<?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: A look into Action Script 3</title>
	<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/</link>
	<description></description>
	<pubDate>Thu, 04 Dec 2008 07:23:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5901</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Tue, 03 Jul 2007 08:01:42 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5901</guid>
		<description>You cant use &#60; signs.</description>
		<content:encoded><![CDATA[<p>You cant use &lt; signs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5587</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Fri, 15 Jun 2007 04:25:46 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5587</guid>
		<description>That is really cool.</description>
		<content:encoded><![CDATA[<p>That is really cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KIM</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5556</link>
		<dc:creator>KIM</dc:creator>
		<pubDate>Mon, 11 Jun 2007 11:04:08 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5556</guid>
		<description>sorry this one is better than the other game i showed you heres the link

http://www.swfup.com/file/12483

the orange box is the coins
its the same map</description>
		<content:encoded><![CDATA[<p>sorry this one is better than the other game i showed you heres the link</p>
<p><a href="http://www.swfup.com/file/12483" rel="nofollow">http://www.swfup.com/file/12483</a></p>
<p>the orange box is the coins<br />
its the same map</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KIM</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5493</link>
		<dc:creator>KIM</dc:creator>
		<pubDate>Thu, 07 Jun 2007 12:24:51 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5493</guid>
		<description>how can i name a scene??</description>
		<content:encoded><![CDATA[<p>how can i name a scene??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gankro</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5369</link>
		<dc:creator>gankro</dc:creator>
		<pubDate>Thu, 31 May 2007 16:30:41 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5369</guid>
		<description>keeps getting cut off... here's what I've got with a 400x400 playing field
(if this gets cut off just e-mail me at nintendogood@hotmail.com) :
onClipEvent (load) {
var gright = false;
var gleft = false;
var gup = false;
var gdown = false;
}
onClipEvent (enterFrame) {
if ((Key.isDown(Key.RIGHT)) &#38;&#38; (gleft == false)) {
gdown = false;
gleft = false;
gup = false;
gright = true;

}else if ((Key.isDown(Key.LEFT)) &#38;&#38; (gright == false)){
gdown = false;
gleft = true;
gup = false;
gright = false;

}else if ((Key.isDown(Key.UP)) &#38;&#38; (gdown == false)){
gdown = false;
gleft = false;
gup = true;
gright = false;

}else if ((Key.isDown(Key.DOWN)) &#38;&#38; (gup == false)){
gdown = true;
gleft = false;
gup = false;
gright = false;

}
if (gright == true) {
this._x += 20;
}else if (gleft == true) {
this._x -= 20;
}else if (gdown == true) {
this._y += 20;
}else if (gup == true) {
this._y -= 20;
}
if (this._x &#62;= 400){
this._x = 0
}
if (this._y &#62;= 400){
this._y = 0
}
if (this._y </description>
		<content:encoded><![CDATA[<p>keeps getting cut off&#8230; here&#8217;s what I&#8217;ve got with a 400&#215;400 playing field<br />
(if this gets cut off just e-mail me at <a href="mailto:nintendogood@hotmail.com)">nintendogood@hotmail.com)</a> :<br />
onClipEvent (load) {<br />
var gright = false;<br />
var gleft = false;<br />
var gup = false;<br />
var gdown = false;<br />
}<br />
onClipEvent (enterFrame) {<br />
if ((Key.isDown(Key.RIGHT)) &amp;&amp; (gleft == false)) {<br />
gdown = false;<br />
gleft = false;<br />
gup = false;<br />
gright = true;</p>
<p>}else if ((Key.isDown(Key.LEFT)) &amp;&amp; (gright == false)){<br />
gdown = false;<br />
gleft = true;<br />
gup = false;<br />
gright = false;</p>
<p>}else if ((Key.isDown(Key.UP)) &amp;&amp; (gdown == false)){<br />
gdown = false;<br />
gleft = false;<br />
gup = true;<br />
gright = false;</p>
<p>}else if ((Key.isDown(Key.DOWN)) &amp;&amp; (gup == false)){<br />
gdown = true;<br />
gleft = false;<br />
gup = false;<br />
gright = false;</p>
<p>}<br />
if (gright == true) {<br />
this._x += 20;<br />
}else if (gleft == true) {<br />
this._x -= 20;<br />
}else if (gdown == true) {<br />
this._y += 20;<br />
}else if (gup == true) {<br />
this._y -= 20;<br />
}<br />
if (this._x &gt;= 400){<br />
this._x = 0<br />
}<br />
if (this._y &gt;= 400){<br />
this._y = 0<br />
}<br />
if (this._y</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KIM</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5360</link>
		<dc:creator>KIM</dc:creator>
		<pubDate>Thu, 31 May 2007 06:23:08 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5360</guid>
		<description>now all i need to learn is duplicating...</description>
		<content:encoded><![CDATA[<p>now all i need to learn is duplicating&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: awesty</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5359</link>
		<dc:creator>awesty</dc:creator>
		<pubDate>Thu, 31 May 2007 06:19:52 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5359</guid>
		<description>You can buy it... Email me.

sniper_rifle_048[AT]hotmail[DOT]com</description>
		<content:encoded><![CDATA[<p>You can buy it&#8230; Email me.</p>
<p>sniper_rifle_048[AT]hotmail[DOT]com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gankro</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5352</link>
		<dc:creator>gankro</dc:creator>
		<pubDate>Thu, 31 May 2007 02:26:43 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5352</guid>
		<description>sorry bout that last one getting cut off...
if (this._x &#62;= 551){
this._x = 0
}
if (this._y &#62;= 551){
this._y = 0
}
if (this._y </description>
		<content:encoded><![CDATA[<p>sorry bout that last one getting cut off&#8230;<br />
if (this._x &gt;= 551){<br />
this._x = 0<br />
}<br />
if (this._y &gt;= 551){<br />
this._y = 0<br />
}<br />
if (this._y</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KIM</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5351</link>
		<dc:creator>KIM</dc:creator>
		<pubDate>Thu, 31 May 2007 02:23:30 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5351</guid>
		<description>OMG... thnx.... although i never thought of doing that yet

thnx alot!</description>
		<content:encoded><![CDATA[<p>OMG&#8230; thnx&#8230;. although i never thought of doing that yet</p>
<p>thnx alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trunk Monkey</title>
		<link>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5341</link>
		<dc:creator>Trunk Monkey</dc:creator>
		<pubDate>Wed, 30 May 2007 18:47:48 +0000</pubDate>
		<guid>http://www.awestyproductions.com/tutorials/flash-tutorials/a-look-into-action-script-3/#comment-5341</guid>
		<description>I have only got Flash MX 2004 but how can I get Flash CS3?</description>
		<content:encoded><![CDATA[<p>I have only got Flash MX 2004 but how can I get Flash CS3?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
