<?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: Tutorial: Make a Vertical Shooter in AS3</title>
	<atom:link href="http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 13 Jul 2010 09:44:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Banner Nesquick</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1293</link>
		<dc:creator>Banner Nesquick</dc:creator>
		<pubDate>Fri, 04 Jun 2010 12:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1293</guid>
		<description>[...] Voor deze opdracht heb ik me gebaseerd op een gevonden tutorial. Ik geef eerlijk toe dat het coderen mij soms wat moeilijk af gaat, maar dmv deze tutorial, heb ik [...]</description>
		<content:encoded><![CDATA[<p>[...] Voor deze opdracht heb ik me gebaseerd op een gevonden tutorial. Ik geef eerlijk toe dat het coderen mij soms wat moeilijk af gaat, maar dmv deze tutorial, heb ik [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1273</link>
		<dc:creator>Ariel</dc:creator>
		<pubDate>Mon, 17 May 2010 14:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1273</guid>
		<description>I made mcMain a graphic &gt;_&gt;
Thanks for posting the .fla. That&#039;s helpful :]</description>
		<content:encoded><![CDATA[<p>I made mcMain a graphic &gt;_&gt;<br />
Thanks for posting the .fla. That&#8217;s helpful :]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandler</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1231</link>
		<dc:creator>Chandler</dc:creator>
		<pubDate>Wed, 21 Apr 2010 19:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1231</guid>
		<description>I&#039;m sorry, I had to follow your tutorial for my flash project. It was very hard to follow and some information was even missing! I&#039;m 100% sure that my teacher could produce this within a few seconds. And the only reason other people think its good is because they download the source code! Please get better at writing this code, and while your are at it, go to a better site...</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry, I had to follow your tutorial for my flash project. It was very hard to follow and some information was even missing! I&#8217;m 100% sure that my teacher could produce this within a few seconds. And the only reason other people think its good is because they download the source code! Please get better at writing this code, and while your are at it, go to a better site&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: remi</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1149</link>
		<dc:creator>remi</dc:creator>
		<pubDate>Sun, 14 Feb 2010 18:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1149</guid>
		<description>Hello, 
I would like to know how to make the same but in horizontal
cheers</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I would like to know how to make the same but in horizontal<br />
cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lubo</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1075</link>
		<dc:creator>lubo</dc:creator>
		<pubDate>Sat, 05 Dec 2009 15:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1075</guid>
		<description>Thanks for the tutorial, its collision detection system was just what i was looking for. Wouldn&#039;t it be better to use the following class for movement? (you would of course delete the up and down cases)


package 
{
	import flash.display.MovieClip;
	import flash.events.KeyboardEvent;
	import flash.events.Event;
	import flash.ui.Keyboard;
	import flash.display.Stage;
	
	


public class movementengine extends MovieClip

{
	private var speed:int = 5;
	
	
	public function movementengine() {
		stage.addEventListener(KeyboardEvent.KEY_DOWN, engine);
		
		
	}
public function engine(event:KeyboardEvent) {

switch(event.keyCode) {
	
	case Keyboard.RIGHT:
	this.x=this.x+speed
	
	
	break;
	case Keyboard.LEFT:
	this.x=this.x-speed
	
	
	break;
	case Keyboard.DOWN:
	this.y=this.y+speed
	
	
	break;
	case Keyboard.UP:
	this.y=this.y-speed
	
	
	break;
}
}
}

}
}</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial, its collision detection system was just what i was looking for. Wouldn&#8217;t it be better to use the following class for movement? (you would of course delete the up and down cases)</p>
<p>package<br />
{<br />
	import flash.display.MovieClip;<br />
	import flash.events.KeyboardEvent;<br />
	import flash.events.Event;<br />
	import flash.ui.Keyboard;<br />
	import flash.display.Stage;</p>
<p>public class movementengine extends MovieClip</p>
<p>{<br />
	private var speed:int = 5;</p>
<p>	public function movementengine() {<br />
		stage.addEventListener(KeyboardEvent.KEY_DOWN, engine);</p>
<p>	}<br />
public function engine(event:KeyboardEvent) {</p>
<p>switch(event.keyCode) {</p>
<p>	case Keyboard.RIGHT:<br />
	this.x=this.x+speed</p>
<p>	break;<br />
	case Keyboard.LEFT:<br />
	this.x=this.x-speed</p>
<p>	break;<br />
	case Keyboard.DOWN:<br />
	this.y=this.y+speed</p>
<p>	break;<br />
	case Keyboard.UP:<br />
	this.y=this.y-speed</p>
<p>	break;<br />
}<br />
}<br />
}</p>
<p>}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: omgtttttyyy</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-1026</link>
		<dc:creator>omgtttttyyy</dc:creator>
		<pubDate>Mon, 19 Oct 2009 13:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-1026</guid>
		<description>there is an error in the code, but i can&#039;t seem to fix it


please help.</description>
		<content:encoded><![CDATA[<p>there is an error in the code, but i can&#8217;t seem to fix it</p>
<p>please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryan Felton</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-984</link>
		<dc:creator>ryan Felton</dc:creator>
		<pubDate>Tue, 15 Sep 2009 12:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-984</guid>
		<description>help, the keys dont work on mine but they work on yours....wtf?
what should i try?</description>
		<content:encoded><![CDATA[<p>help, the keys dont work on mine but they work on yours&#8230;.wtf?<br />
what should i try?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: justin</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-806</link>
		<dc:creator>justin</dc:creator>
		<pubDate>Thu, 14 May 2009 20:24:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-806</guid>
		<description>I wanted 2 thank you sooo much for this tutorial it was such a big help in not only makeing this game but just getting back into the swing of AS3 

any way check out the game I made based off this 
http://www.justinlantz.com/shooter/</description>
		<content:encoded><![CDATA[<p>I wanted 2 thank you sooo much for this tutorial it was such a big help in not only makeing this game but just getting back into the swing of AS3 </p>
<p>any way check out the game I made based off this<br />
<a href="http://www.justinlantz.com/shooter/" rel="nofollow">http://www.justinlantz.com/shooter/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-792</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Sun, 10 May 2009 05:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-792</guid>
		<description>Thanks, I had no clue how to do AS3, and barely any clue about AS2 before I found your site. Your a huge help.</description>
		<content:encoded><![CDATA[<p>Thanks, I had no clue how to do AS3, and barely any clue about AS2 before I found your site. Your a huge help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rasmus Munter</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-make-a-vertical-shooter-in-as3/#comment-787</link>
		<dc:creator>Rasmus Munter</dc:creator>
		<pubDate>Wed, 06 May 2009 15:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=600#comment-787</guid>
		<description>Terence, actualy its not to hard. A good tutorial on it if you go to www.tutorialized.com and search up dodgeball part 3, it will tell you</description>
		<content:encoded><![CDATA[<p>Terence, actualy its not to hard. A good tutorial on it if you go to <a href="http://www.tutorialized.com" rel="nofollow">http://www.tutorialized.com</a> and search up dodgeball part 3, it will tell you</p>
]]></content:encoded>
	</item>
</channel>
</rss>
