<?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: Create a Brick Breaker Game in AS2</title>
	<atom:link href="http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/</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: Emmy</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1264</link>
		<dc:creator>Emmy</dc:creator>
		<pubDate>Wed, 12 May 2010 22:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1264</guid>
		<description>This  does not work in CS4 AT ALL.</description>
		<content:encoded><![CDATA[<p>This  does not work in CS4 AT ALL.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samm</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1227</link>
		<dc:creator>Samm</dc:creator>
		<pubDate>Tue, 20 Apr 2010 19:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1227</guid>
		<description>wierd.. im a noobie with flash i just started to play with it and it says that my script is correct but when i press play movie of play scene it doesnt work.. Or do i need to press something else?</description>
		<content:encoded><![CDATA[<p>wierd.. im a noobie with flash i just started to play with it and it says that my script is correct but when i press play movie of play scene it doesnt work.. Or do i need to press something else?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio Hurtado-Villanueva</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1187</link>
		<dc:creator>Sergio Hurtado-Villanueva</dc:creator>
		<pubDate>Tue, 16 Mar 2010 16:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1187</guid>
		<description>Can you make these programs in Flash MX 2004? I want to make a game like this.</description>
		<content:encoded><![CDATA[<p>Can you make these programs in Flash MX 2004? I want to make a game like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash Game Development Tutorials &#38; FLA Files</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1159</link>
		<dc:creator>Flash Game Development Tutorials &#38; FLA Files</dc:creator>
		<pubDate>Thu, 25 Feb 2010 13:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1159</guid>
		<description>[...] How to Create a Brick Breaker Game in AS2 [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Create a Brick Breaker Game in AS2 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remy</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1148</link>
		<dc:creator>Remy</dc:creator>
		<pubDate>Sun, 14 Feb 2010 15:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1148</guid>
		<description>I&#039;m using mx 2004 and the paddle won&#039;t budge an inch. :/

help please?</description>
		<content:encoded><![CDATA[<p>I&#8217;m using mx 2004 and the paddle won&#8217;t budge an inch. :/</p>
<p>help please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1144</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 10 Feb 2010 06:35:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1144</guid>
		<description>ok i cant get this to work i put in all the code and i tested it and the paddle stayed in place. please help!

here is what i put in actions layer


onEnterFrame = function(){ //this function will run during every single frame
	//The paddle follows the mouse
	mcPaddle._x = _xmouse - mcPaddle._width*.5;
 
	//If the mouse goes off too far to the left
	if(_xmouse  Stage.width - mcPaddle._width / 2){
		//Keep the paddle on stage
		mcPaddle._x = Stage.width - mcPaddle._width;
	}
}</description>
		<content:encoded><![CDATA[<p>ok i cant get this to work i put in all the code and i tested it and the paddle stayed in place. please help!</p>
<p>here is what i put in actions layer</p>
<p>onEnterFrame = function(){ //this function will run during every single frame<br />
	//The paddle follows the mouse<br />
	mcPaddle._x = _xmouse &#8211; mcPaddle._width*.5;</p>
<p>	//If the mouse goes off too far to the left<br />
	if(_xmouse  Stage.width &#8211; mcPaddle._width / 2){<br />
		//Keep the paddle on stage<br />
		mcPaddle._x = Stage.width &#8211; mcPaddle._width;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sivakumar.k</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1122</link>
		<dc:creator>sivakumar.k</dc:creator>
		<pubDate>Sun, 17 Jan 2010 09:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1122</guid>
		<description>HI!!!
  Very Nice script thx Guys!</description>
		<content:encoded><![CDATA[<p>HI!!!<br />
  Very Nice script thx Guys!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skedist</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1058</link>
		<dc:creator>Skedist</dc:creator>
		<pubDate>Sat, 14 Nov 2009 14:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1058</guid>
		<description>onEnterFrame = function(){ //this function will run during every single frame
	//The paddle follows the mouse
	mcPaddle._x = _xmouse - mcPaddle._width*.5;


 
	//If the mouse goes off too far to the left
	if(_xmouse  Stage.width - mcPaddle._width / 2){
		//Keep the paddle on stage
		mcPaddle._x = 590 - mcPaddle._width;
	}
}</description>
		<content:encoded><![CDATA[<p>onEnterFrame = function(){ //this function will run during every single frame<br />
	//The paddle follows the mouse<br />
	mcPaddle._x = _xmouse &#8211; mcPaddle._width*.5;</p>
<p>	//If the mouse goes off too far to the left<br />
	if(_xmouse  Stage.width &#8211; mcPaddle._width / 2){<br />
		//Keep the paddle on stage<br />
		mcPaddle._x = 590 &#8211; mcPaddle._width;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skedist</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1057</link>
		<dc:creator>Skedist</dc:creator>
		<pubDate>Sat, 14 Nov 2009 14:56:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1057</guid>
		<description>it seems i was missing halve of my code for some reason???? here&#039;s the whole for those of you that need it

onEnterFrame = function(){ //this function will run during every single frame
	//The paddle follows the mouse
	mcPaddle._x = _xmouse - mcPaddle._width*.5;
 
	//If the mouse goes off too far to the left
	if(_xmouse  Stage.width - mcPaddle._width / 2){
		//Keep the paddle on stage
		mcPaddle._x = 590 - mcPaddle._width;
	}
}</description>
		<content:encoded><![CDATA[<p>it seems i was missing halve of my code for some reason???? here&#8217;s the whole for those of you that need it</p>
<p>onEnterFrame = function(){ //this function will run during every single frame<br />
	//The paddle follows the mouse<br />
	mcPaddle._x = _xmouse &#8211; mcPaddle._width*.5;</p>
<p>	//If the mouse goes off too far to the left<br />
	if(_xmouse  Stage.width &#8211; mcPaddle._width / 2){<br />
		//Keep the paddle on stage<br />
		mcPaddle._x = 590 &#8211; mcPaddle._width;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skedist</title>
		<link>http://www.mrsunstudios.com/blog/flash/tutorial-create-a-brick-breaker-game-in-as2/#comment-1056</link>
		<dc:creator>Skedist</dc:creator>
		<pubDate>Sat, 14 Nov 2009 14:54:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mrsunstudios.com/?p=1052#comment-1056</guid>
		<description>i&#039;ve had the problem were the paddle goes off the screen too far to the left and doesnt go far enough to the right but i fixed it, if anyone els has this problem, feel free to use this code i used but according to the size of you&#039;re paddle you may need to adjust it here&#039;s the code i used enjoy =D


onEnterFrame = function(){ //this function will run during every single frame
	//The paddle follows the mouse
	mcPaddle._x = _xmouse - mcPaddle._width*.5;
 
	//If the mouse goes off too far to the left
	if(_xmouse  Stage.width - mcPaddle._width / 2){
		//Keep the paddle on stage
		mcPaddle._x = 590 - mcPaddle._width;
	}
}</description>
		<content:encoded><![CDATA[<p>i&#8217;ve had the problem were the paddle goes off the screen too far to the left and doesnt go far enough to the right but i fixed it, if anyone els has this problem, feel free to use this code i used but according to the size of you&#8217;re paddle you may need to adjust it here&#8217;s the code i used enjoy =D</p>
<p>onEnterFrame = function(){ //this function will run during every single frame<br />
	//The paddle follows the mouse<br />
	mcPaddle._x = _xmouse &#8211; mcPaddle._width*.5;</p>
<p>	//If the mouse goes off too far to the left<br />
	if(_xmouse  Stage.width &#8211; mcPaddle._width / 2){<br />
		//Keep the paddle on stage<br />
		mcPaddle._x = 590 &#8211; mcPaddle._width;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
