<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Drawing and Making Movieclips through ActionScript</title>
	<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/</link>
	<description></description>
	<pubDate>Thu, 04 Dec 2008 05:45:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: BK</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-17432</link>
		<dc:creator>BK</dc:creator>
		<pubDate>Sun, 01 Jun 2008 19:57:04 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-17432</guid>
		<description>thanks a bunches ^^!</description>
		<content:encoded><![CDATA[<p>thanks a bunches ^^!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4445</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Thu, 05 Apr 2007 03:16:12 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4445</guid>
		<description>@Eblup: What is going wrong with the code?

@akskater100: What are the errors you are getting?</description>
		<content:encoded><![CDATA[<p>@Eblup: What is going wrong with the code?</p>
<p>@akskater100: What are the errors you are getting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: akskater100</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4396</link>
		<dc:creator>akskater100</dc:creator>
		<pubDate>Wed, 28 Mar 2007 21:59:39 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4396</guid>
		<description>whenever i paste the code in it says error. how do i fix it?</description>
		<content:encoded><![CDATA[<p>whenever i paste the code in it says error. how do i fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eblup</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4386</link>
		<dc:creator>Eblup</dc:creator>
		<pubDate>Wed, 28 Mar 2007 01:40:07 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4386</guid>
		<description>hey iam back i have been out of luck. my hard drive died so i had to get another computer and get flash. i need help agin i dont have any of my old codeing word documents so i need help recreating my jumping code can you tell me what is wroung with it.
onClipEvent (load) {
j = 0;
c = 1;
}

onClipEvent (enterFrame) {
if (Key.isDown(Key.UP)) {
if (c &#62; 0) {
j = -15;
_y -= 6;
c = 0;
}
}
}

onClipEvent (enterFrame) {
if (j &#62; 6) {
j = 6;
}
}

onClipEvent (enterFrame) {
if(_root.ground.hitTest(_x (_width/2),_y,true)){
this._x -= 8;
}
if(_root.ground.hitTest(_x-(_width/2),_y,true)){
this._x = 8;
}
if(_root.ground.hitTest(_x,_y (_height/2),true)){
j = 0;
c = 1;
}else{
j += 1;
this._y += j;
}
if(_root.ground.hitTest(_x,_y-(_height/2),true)){
j = 3;
}
}

onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
_x += 8;
_xscale = 100;
_root.guy.gotoAndStop(2);
}else if (Key.isDown(Key.LEFT)) {
_x -= 8;
_xscale = -100;
_root.guy.gotoAndStop(2);
}else{
_root.guy.gotoAndStop(1);
}
}</description>
		<content:encoded><![CDATA[<p>hey iam back i have been out of luck. my hard drive died so i had to get another computer and get flash. i need help agin i dont have any of my old codeing word documents so i need help recreating my jumping code can you tell me what is wroung with it.<br />
onClipEvent (load) {<br />
j = 0;<br />
c = 1;<br />
}</p>
<p>onClipEvent (enterFrame) {<br />
if (Key.isDown(Key.UP)) {<br />
if (c &gt; 0) {<br />
j = -15;<br />
_y -= 6;<br />
c = 0;<br />
}<br />
}<br />
}</p>
<p>onClipEvent (enterFrame) {<br />
if (j &gt; 6) {<br />
j = 6;<br />
}<br />
}</p>
<p>onClipEvent (enterFrame) {<br />
if(_root.ground.hitTest(_x (_width/2),_y,true)){<br />
this._x -= 8;<br />
}<br />
if(_root.ground.hitTest(_x-(_width/2),_y,true)){<br />
this._x = 8;<br />
}<br />
if(_root.ground.hitTest(_x,_y (_height/2),true)){<br />
j = 0;<br />
c = 1;<br />
}else{<br />
j += 1;<br />
this._y += j;<br />
}<br />
if(_root.ground.hitTest(_x,_y-(_height/2),true)){<br />
j = 3;<br />
}<br />
}</p>
<p>onClipEvent (enterFrame) {<br />
if (Key.isDown(Key.RIGHT)) {<br />
_x += 8;<br />
_xscale = 100;<br />
_root.guy.gotoAndStop(2);<br />
}else if (Key.isDown(Key.LEFT)) {<br />
_x -= 8;<br />
_xscale = -100;<br />
_root.guy.gotoAndStop(2);<br />
}else{<br />
_root.guy.gotoAndStop(1);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spleen</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4036</link>
		<dc:creator>Spleen</dc:creator>
		<pubDate>Mon, 05 Mar 2007 07:37:31 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4036</guid>
		<description>@KIM: Here is a tutorial on how to draw a circle with actionscript: http://www.actionscript.org/forums/showthread.php3?s=&#38;threadid=30328
All you had to do was google for it, so stop bugging awesty.</description>
		<content:encoded><![CDATA[<p>@KIM: Here is a tutorial on how to draw a circle with actionscript: <a href="http://www.actionscript.org/forums/showthread.php3?s=&amp;threadid=30328" rel="nofollow">http://www.actionscript.org/fo.....adid=30328</a><br />
All you had to do was google for it, so stop bugging awesty.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4029</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Mon, 05 Mar 2007 06:40:28 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4029</guid>
		<description>Did you read the tutorial?</description>
		<content:encoded><![CDATA[<p>Did you read the tutorial?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KIM</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4013</link>
		<dc:creator>KIM</dc:creator>
		<pubDate>Sun, 04 Mar 2007 11:18:14 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-4013</guid>
		<description>... i'm about to get bored...

can you make a tute on how to make a circle and/or square through action scripts?</description>
		<content:encoded><![CDATA[<p>&#8230; i&#8217;m about to get bored&#8230;</p>
<p>can you make a tute on how to make a circle and/or square through action scripts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3800</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Tue, 20 Feb 2007 08:24:31 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3800</guid>
		<description>sniper_rifle_048[@]hotmail[.]com</description>
		<content:encoded><![CDATA[<p>sniper_rifle_048[@]hotmail[.]com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3794</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Mon, 19 Feb 2007 21:46:01 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3794</guid>
		<description>Hey, I have some stuff I need help with live. So I was wondering if you had AIM or MSN messengers. If you want, but dont want to disclose personal information to the public through a comment, just send it you gamejocky@hotmail.com. 

It would help a bunch.</description>
		<content:encoded><![CDATA[<p>Hey, I have some stuff I need help with live. So I was wondering if you had AIM or MSN messengers. If you want, but dont want to disclose personal information to the public through a comment, just send it you <a href="mailto:gamejocky@hotmail.com.">gamejocky@hotmail.com.</a> </p>
<p>It would help a bunch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: djodin</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3744</link>
		<dc:creator>djodin</dc:creator>
		<pubDate>Sat, 17 Feb 2007 14:08:16 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/drawing-and-making-movieclips-through-actionscript/#comment-3744</guid>
		<description>nice tutorial! =D 
luv it!</description>
		<content:encoded><![CDATA[<p>nice tutorial! =D<br />
luv it!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
