<?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: AS3 Flash Games for Beginners: Character Movement / Handling Multiple Keypresses</title>
	<atom:link href="http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/feed" rel="self" type="application/rss+xml" />
	<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses</link>
	<description>Learn to Make Flash Games, Applications, and Websites</description>
	<pubDate>Fri, 12 Mar 2010 13:16:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: shak-a-tak</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4792</link>
		<dc:creator>shak-a-tak</dc:creator>
		<pubDate>Tue, 09 Mar 2010 14:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4792</guid>
		<description>let me be more exact. I hit control enter, the background is the only thing to open, nothing happens after that. I have literally went through and copied and pasted the code provided as an example, but it doesn't help. I have no idea what to do. so if anyone can help, please do.</description>
		<content:encoded><![CDATA[<p>let me be more exact. I hit control enter, the background is the only thing to open, nothing happens after that. I have literally went through and copied and pasted the code provided as an example, but it doesn&#8217;t help. I have no idea what to do. so if anyone can help, please do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shak-a-tak</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4790</link>
		<dc:creator>shak-a-tak</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4790</guid>
		<description>when I ctrl enter, nothing happens. the background pops up and that's it. does anybody know what I'm doing wrong? I would appreciate any help I could get.</description>
		<content:encoded><![CDATA[<p>when I ctrl enter, nothing happens. the background pops up and that&#8217;s it. does anybody know what I&#8217;m doing wrong? I would appreciate any help I could get.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pzUH</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4721</link>
		<dc:creator>pzUH</dc:creator>
		<pubDate>Tue, 26 Jan 2010 07:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4721</guid>
		<description>i got these errors:
Error: Error #2090: The Proxy class does not implement callProperty. It must be overridden by a subclass.
	at Error$/throwError()
	at flash.utils::Proxy/http://www.adobe.com/2006/actionscript/flash/proxy::callProperty()
	at com.asgamer.psw::pesawat/loop()

i have no idea what i need to do.....</description>
		<content:encoded><![CDATA[<p>i got these errors:<br />
Error: Error #2090: The Proxy class does not implement callProperty. It must be overridden by a subclass.<br />
	at Error$/throwError()<br />
	at flash.utils::Proxy/http://www.adobe.com/2006/actionscript/flash/proxy::callProperty()<br />
	at com.asgamer.psw::pesawat/loop()</p>
<p>i have no idea what i need to do&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aro</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4580</link>
		<dc:creator>Aro</dc:creator>
		<pubDate>Tue, 17 Nov 2009 03:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4580</guid>
		<description>Nvm I got it. I had the wrong link in my movieclip so the class function never started... I had "Player" as the class not "com.aro.eclipse1.Player".</description>
		<content:encoded><![CDATA[<p>Nvm I got it. I had the wrong link in my movieclip so the class function never started&#8230; I had &#8220;Player&#8221; as the class not &#8220;com.aro.eclipse1.Player&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aro</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4578</link>
		<dc:creator>Aro</dc:creator>
		<pubDate>Mon, 16 Nov 2009 18:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4578</guid>
		<description>I'm getting this error: "1137 Incorrect number of arguments. Expected no more then 0" I think the passing is fine... maybe its got something to do with my name changes(ex."Ship" and its functions are all called "Player")? Note that it isn't error 1136 but it is 1137.

My passing from MethodMain(Engine) to Player(Ship) looks like this:

MethodMain:
	//create an object of our ship from the Ship class
	var ship:Player = new Player(stage);
	//add it to the display list
	stage.addChild(ship);
	ship.x=stage.stageWidth/2;
	ship.y=stage.stageHeight/2;
	ship.width=80.7;
	ship.height=23.8;
Player:
	public function Player(stageRef:Stage) {
	---CODE---
	}</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting this error: &#8220;1137 Incorrect number of arguments. Expected no more then 0&#8243; I think the passing is fine&#8230; maybe its got something to do with my name changes(ex.&#8221;Ship&#8221; and its functions are all called &#8220;Player&#8221;)? Note that it isn&#8217;t error 1136 but it is 1137.</p>
<p>My passing from MethodMain(Engine) to Player(Ship) looks like this:</p>
<p>MethodMain:<br />
	//create an object of our ship from the Ship class<br />
	var ship:Player = new Player(stage);<br />
	//add it to the display list<br />
	stage.addChild(ship);<br />
	ship.x=stage.stageWidth/2;<br />
	ship.y=stage.stageHeight/2;<br />
	ship.width=80.7;<br />
	ship.height=23.8;<br />
Player:<br />
	public function Player(stageRef:Stage) {<br />
	&#8212;CODE&#8212;<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Jones</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4533</link>
		<dc:creator>Richard Jones</dc:creator>
		<pubDate>Fri, 11 Sep 2009 05:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4533</guid>
		<description>1136: Incorrect number of arguments.  Expected 1.

I am getting this error and I have check the linkage and also the setting that TheKanos talked about. What am I missing. Great tutorial by way.</description>
		<content:encoded><![CDATA[<p>1136: Incorrect number of arguments.  Expected 1.</p>
<p>I am getting this error and I have check the linkage and also the setting that TheKanos talked about. What am I missing. Great tutorial by way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S.</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4511</link>
		<dc:creator>S.</dc:creator>
		<pubDate>Sat, 15 Aug 2009 04:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4511</guid>
		<description>ok it works if i download your sourcefile and run that, but as soon as I do it from my typed by hand source, something messes up. I have a fairly good understanding of where I'm defining the stage..and I don't see anything different.</description>
		<content:encoded><![CDATA[<p>ok it works if i download your sourcefile and run that, but as soon as I do it from my typed by hand source, something messes up. I have a fairly good understanding of where I&#8217;m defining the stage..and I don&#8217;t see anything different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: S.</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-4510</link>
		<dc:creator>S.</dc:creator>
		<pubDate>Sat, 15 Aug 2009 04:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-4510</guid>
		<description>I keep getting the following error in the KeyObject.as script

1119: Access of possibly undefined property stage through a reference with static type 
1120: Access of undefined property stage.
1120: Access of undefined property stage.
1119: Access of possibly undefined property stage through a reference with static type Class.

it's killing me, i've pretty much copy and pasted YOUR code to try and stop it, and i'm still getting it.</description>
		<content:encoded><![CDATA[<p>I keep getting the following error in the KeyObject.as script</p>
<p>1119: Access of possibly undefined property stage through a reference with static type<br />
1120: Access of undefined property stage.<br />
1120: Access of undefined property stage.<br />
1119: Access of possibly undefined property stage through a reference with static type Class.</p>
<p>it&#8217;s killing me, i&#8217;ve pretty much copy and pasted YOUR code to try and stop it, and i&#8217;m still getting it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-3833</link>
		<dc:creator>J</dc:creator>
		<pubDate>Mon, 06 Jul 2009 17:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-3833</guid>
		<description>I'm still trying to get it working with WASD. I've tried refrag's method of:
var keyA:uint = 65;

And I've tried using keycodes, but none of those work. Could you please explain to me how to use Senocular's library with WASD?</description>
		<content:encoded><![CDATA[<p>I&#8217;m still trying to get it working with WASD. I&#8217;ve tried refrag&#8217;s method of:<br />
var keyA:uint = 65;</p>
<p>And I&#8217;ve tried using keycodes, but none of those work. Could you please explain to me how to use Senocular&#8217;s library with WASD?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Par</title>
		<link>http://asgamer.com/2009/as3-flash-games-for-beginners-character-movement-handling-multiple-keypresses/comment-page-1#comment-3825</link>
		<dc:creator>Par</dc:creator>
		<pubDate>Mon, 06 Jul 2009 15:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://asgamer.com/?p=64#comment-3825</guid>
		<description>Excellent Comment BN, thanks a lot :D</description>
		<content:encoded><![CDATA[<p>Excellent Comment BN, thanks a lot <img src='http://asgamer.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
