<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make flash games &#8211; Flash game dev 101</title>
	<atom:link href="http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/</link>
	<description>Flash and actionscript game tutorials and news</description>
	<lastBuildDate>Tue, 01 Mar 2011 17:29:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Fabricio Farias</title>
		<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/comment-page-1/#comment-195</link>
		<dc:creator>Fabricio Farias</dc:creator>
		<pubDate>Fri, 03 Dec 2010 17:47:45 +0000</pubDate>
		<guid isPermaLink="false">http://flashgamesclassroom.com/classroom/?p=47#comment-195</guid>
		<description>nevermind, I found a solution. I just work out of my empty USB drive that way Flash can easily pick up the class files. I dont understand why it didnt pick them up in my external</description>
		<content:encoded><![CDATA[<p>nevermind, I found a solution. I just work out of my empty USB drive that way Flash can easily pick up the class files. I dont understand why it didnt pick them up in my external</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabricio Farias</title>
		<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/comment-page-1/#comment-194</link>
		<dc:creator>Fabricio Farias</dc:creator>
		<pubDate>Fri, 03 Dec 2010 15:56:42 +0000</pubDate>
		<guid isPermaLink="false">http://flashgamesclassroom.com/classroom/?p=47#comment-194</guid>
		<description>Hello, for some reason I keep getting the error message &quot;class path cannot be found&quot; when I set the class Target for the movieclip targetMC. I have tripled checked, everything is spelled correctly</description>
		<content:encoded><![CDATA[<p>Hello, for some reason I keep getting the error message &#8220;class path cannot be found&#8221; when I set the class Target for the movieclip targetMC. I have tripled checked, everything is spelled correctly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/comment-page-1/#comment-110</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sun, 17 Jan 2010 00:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://flashgamesclassroom.com/classroom/?p=47#comment-110</guid>
		<description>I did get the game to score, thank you for the great game engine, it was really a lot of fun and good learning adventure  expanding this into a 4 level scoring game, I used this code to get it to post a score:
import flash.net.URLVariables;
import flash.net.*
import flash.net.URLRequestMethod;

SubmitBtn.addEventListener(MouseEvent.CLICK, myButtonFunction);

function myButtonFunction(event: MouseEvent):void{
	
var myVariables:URLVariables = new URLVariables();
myVariables.gname = &quot;The Games Name&quot;;
myVariables.gscore = score var.text;
trace(myVariables);
var myURLRequest:URLRequest = new URLRequest(&quot;index.php?act=Arcade&amp;do=newscore&quot;);
myURLRequest.method = URLRequestMethod.POST;
myURLRequest.data = myVariables;

navigateToURL(myURLRequest, &#039;_self&#039;);

}</description>
		<content:encoded><![CDATA[<p>I did get the game to score, thank you for the great game engine, it was really a lot of fun and good learning adventure  expanding this into a 4 level scoring game, I used this code to get it to post a score:<br />
import flash.net.URLVariables;<br />
import flash.net.*<br />
import flash.net.URLRequestMethod;</p>
<p>SubmitBtn.addEventListener(MouseEvent.CLICK, myButtonFunction);</p>
<p>function myButtonFunction(event: MouseEvent):void{</p>
<p>var myVariables:URLVariables = new URLVariables();<br />
myVariables.gname = &#8220;The Games Name&#8221;;<br />
myVariables.gscore = score var.text;<br />
trace(myVariables);<br />
var myURLRequest:URLRequest = new URLRequest(&#8221;index.php?act=Arcade&amp;do=newscore&#8221;);<br />
myURLRequest.method = URLRequestMethod.POST;<br />
myURLRequest.data = myVariables;</p>
<p>navigateToURL(myURLRequest, &#8216;_self&#8217;);</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/comment-page-1/#comment-107</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 14 Jan 2010 16:43:14 +0000</pubDate>
		<guid isPermaLink="false">http://flashgamesclassroom.com/classroom/?p=47#comment-107</guid>
		<description>Hi Mike

Thanks for your comment.  

getURL is deprectiated in AS3 so you need to use an alternative method.  There&#039;s a good discussion on how to approach this at Script Playground : &lt;a href=&quot;http://scriptplayground.com/tutorials/as/getURL-in-Actionscript-3/&quot;&gt;getURL in Actionscript 3&lt;/a&gt;

Hope that helps!</description>
		<content:encoded><![CDATA[<p>Hi Mike</p>
<p>Thanks for your comment.  </p>
<p>getURL is deprectiated in AS3 so you need to use an alternative method.  There&#8217;s a good discussion on how to approach this at Script Playground : <a href="http://scriptplayground.com/tutorials/as/getURL-in-Actionscript-3/">getURL in Actionscript 3</a></p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.flashgamesclassroom.com/classroom/actionscript/how-to-make-flash-games-flash-game-dev-101/comment-page-1/#comment-106</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 14 Jan 2010 16:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://flashgamesclassroom.com/classroom/?p=47#comment-106</guid>
		<description>Hello

Great tutorial and game engine, thank you for helping beginners in action scripting as3. I have used the engine and made it into a small game with 4 scoring levels at the temporary link submitted. I have one question, I make other games and quizzes in as2 and use this code for the Submit Score button:

on (release)
{
   var gname = &quot;SWF FILE NAME&quot;;
   var gscore = _root.score;
   getURL(&quot;index.php?act=Arcade&amp;do=newscore&quot;, &quot;_self&quot;, &quot;POST&quot;);
}

but I get errors in as3, I have tried different codes from the web that are used for as3 but they do not work. What code would you suggest or direct me to, that would submit that code.

Thank You Mike</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>Great tutorial and game engine, thank you for helping beginners in action scripting as3. I have used the engine and made it into a small game with 4 scoring levels at the temporary link submitted. I have one question, I make other games and quizzes in as2 and use this code for the Submit Score button:</p>
<p>on (release)<br />
{<br />
   var gname = &#8220;SWF FILE NAME&#8221;;<br />
   var gscore = _root.score;<br />
   getURL(&#8221;index.php?act=Arcade&amp;do=newscore&#8221;, &#8220;_self&#8221;, &#8220;POST&#8221;);<br />
}</p>
<p>but I get errors in as3, I have tried different codes from the web that are used for as3 but they do not work. What code would you suggest or direct me to, that would submit that code.</p>
<p>Thank You Mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>

