<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>w3mentor &#187; Actionscript Basics</title>
	<atom:link href="http://w3mentor.com/learn/category/flash/actionscript-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://w3mentor.com</link>
	<description>Learning web technologies simplified!</description>
	<lastBuildDate>Sat, 28 Jan 2012 20:16:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Removing event listeners in Actionscript</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/removing-event-listeners-in-actionscript/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/removing-event-listeners-in-actionscript/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 21:04:54 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9653</guid>
		<description><![CDATA[var timer:Timer = new Timer&#40;1000&#41;; timer.addEventListener&#40;TimerEvent.TIMER, onTimer&#41;; timer.start&#40;&#41;; function onTimer&#40;evt:TimerEvent&#41;:void &#123; watch.hand.rotation +=5; if &#40;watch.hand.rotation &#62;= 25&#41; &#123; timer.removeEventListener&#40;TimerEvent. TIMER, onTimer&#41;; &#125; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/removing-event-listeners-in-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript timer event</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-timer-event/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-timer-event/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 21:04:02 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9651</guid>
		<description><![CDATA[var timer:Timer = new Timer&#40;1000&#41;; timer.addEventListener&#40;TimerEvent.TIMER, onTimer&#41;; timer.start&#40;&#41;; function onTimer&#40;evt:TimerEvent&#41;:void &#123; watch.hand.rotation +=5; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-timer-event/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Keyboard Events to Call Methods in Actionscript</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/using-keyboard-events-to-call-methods-in-actionscript/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/using-keyboard-events-to-call-methods-in-actionscript/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 21:01:50 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9649</guid>
		<description><![CDATA[function onKeyPressed&#40;evt:KeyboardEvent&#41;:void &#123; switch &#40;evt.keyCode&#41; &#123; case Keyboard.ENTER: box.play&#40;&#41;; break; case Keyboard.BACKSPACE: box.stop&#40;&#41;; break; case Keyboard.LEFT: box.prevFrame&#40;&#41;; break; case Keyboard.RIGHT: box.nextFrame&#40;&#41;; break; case Keyboard.SPACE: box.gotoAndStop&#40;3&#41;; break; default: trace&#40;“keyCode:”, evt.keyCode&#41;; &#125; &#125;;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/using-keyboard-events-to-call-methods-in-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript multiple events</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-multiple-events/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-multiple-events/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 21:00:10 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[events]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9647</guid>
		<description><![CDATA[myMovieClip.addEventListener&#40;MouseEvent.MOUSE_DOWN, onStartDrag&#41;; myMovieClip.addEventListener&#40;MouseEvent.MOUSE_UP, onStopDrag&#41;; function onStartDrag&#40;evt:MouseEvent&#41;:void &#123; evt.target.startDrag&#40;&#41;; &#125; function onStopDrag&#40;evt:MouseEvent&#41;:void &#123; evt.target.stopDrag&#40;&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-multiple-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript addEventListener() function</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-addeventlistener-function/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-addeventlistener-function/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:59:07 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9645</guid>
		<description><![CDATA[The addEventListener() method is used to identify the event, and assign the function to be executed to the object that is supposed to be doing the listening. rotate_right_btn.addEventListener&#40;MouseEvent.MOUSE_UP,onRotateRight&#41;; function onRotateRight&#40;evt:MouseEvent&#41;:void &#123; box.rotation += 20; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-addeventlistener-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript movie clip properties</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-movie-clip-properties/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-movie-clip-properties/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:57:41 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[properties]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9643</guid>
		<description><![CDATA[Description: Location Property: x, y Syntax for Setting Value: box.x = 100; box.y = 100; Units and/or Range: pixels Description: Scale (1) Property: scaleX, scaleY Syntax for Setting Value: box.scaleX = .5; box.scaleY = .5; Units and/or Range: percent / &#8230; <a href="http://w3mentor.com/learn/flash/actionscript-basics/actionscript-movie-clip-properties/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-movie-clip-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript passing objects to function as parameter</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-passing-objects-to-function-as-parameter/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-passing-objects-to-function-as-parameter/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:50:05 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[object]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9641</guid>
		<description><![CDATA[function showPlaneStatus&#40;obj:Object&#41;:void &#123; trace&#40;obj.pitch&#41;; trace&#40;obj.roll&#41;; trace&#40;obj.yaw&#41;; &#125;; showPlaneStatus&#40;plane&#41;; //0 //5 //5]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-passing-objects-to-function-as-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript simple objects</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-simple-objects/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-simple-objects/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:49:00 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[object]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9639</guid>
		<description><![CDATA[var plane:Object = new Object&#40;&#41;; plane.pitch = 0; plane.roll = 5; plane.yaw = 5; &#160; trace&#40;plane.pitch&#41;; //0]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-simple-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript functions with parameters</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-with-parameters/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-with-parameters/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:47:53 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9637</guid>
		<description><![CDATA[function celToFar&#40;cel:Number&#41;:Number &#123; return &#40;9/5&#41;*cel + 32; &#125; trace&#40;celToFar&#40;20&#41;&#41;; //68 function farToCel&#40;far:Number&#41;:Number &#123; return &#40;5/9&#41;*&#40;far - 32&#41;; &#125; var celDeg:Number = farToCel&#40;68&#41;&#41;; trace&#40;celDeg&#41;; //20]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-with-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript functions example</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-example/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-example/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:46:57 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9635</guid>
		<description><![CDATA[function showMsg&#40;&#41;&#123; trace&#40;&#34;hello&#34;&#41;; &#125; showMsg&#40;&#41;; //hello]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-functions-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript arrays</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-arrays/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-arrays/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:45:45 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[arrays]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9633</guid>
		<description><![CDATA[var myArray:Array = new Array&#40;&#41;; myArray.push&#40;1&#41;; trace&#40;myArray&#41; // 1 appears in the Output panel myArray.push&#40;2&#41;; // the array now has two items: 1, 2 trace&#40;myArray.pop&#40;&#41;&#41;; // the pop() method removes the last item, displaying its value of 2 trace&#40;myArray&#41; // &#8230; <a href="http://w3mentor.com/learn/flash/actionscript-basics/actionscript-arrays/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript while loop</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-while-loop/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-while-loop/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:44:50 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[loop]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9631</guid>
		<description><![CDATA[var num:Number = 0; while &#40;num &#60; .5&#41; &#123; num = Math.random&#40;&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-while-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript for loop</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-for-loop/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-for-loop/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:43:52 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[looping]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9629</guid>
		<description><![CDATA[for &#40;var i:Number = 0; i &#60; 3; i++&#41; &#123; trace&#40;&#34;hello&#34;&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-for-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript switch statement</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-switch-statement/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-switch-statement/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:42:50 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[switch]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9627</guid>
		<description><![CDATA[switch &#40;a&#41; &#123; case 1 : trace&#40;&#34;one&#34;&#41;; break; case 2 : trace&#40;&#34;two&#34;&#41;; break; case 3 : trace&#40;&#34;three&#34;&#41;; break; default : trace&#40;&#34;other&#34;&#41;; break; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-switch-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript if else example</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-else-example/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-else-example/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:41:32 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[conditional]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9625</guid>
		<description><![CDATA[if &#40;a == 1&#41; &#123; trace&#40;&#34;option a&#34;&#41;; &#125; if &#40;b == &#34;hello&#34;&#41; &#123; trace&#40;&#34;option b&#34;&#41;; &#125; else &#123; trace&#40;&#34;option other&#34;&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-else-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Actionscript if condition example</title>
		<link>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-condition-example/</link>
		<comments>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-condition-example/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:39:45 +0000</pubDate>
		<dc:creator>madhu</dc:creator>
				<category><![CDATA[Actionscript Basics]]></category>
		<category><![CDATA[conditional]]></category>

		<guid isPermaLink="false">http://w3mentor.com/?p=9623</guid>
		<description><![CDATA[var a:Number = 1; var b:String = &#34;hello&#34;; var c:Boolean = false; if &#40;a == 1&#41; &#123; trace&#40;&#34;option a&#34;&#41;; &#125;]]></description>
		<wfw:commentRss>http://w3mentor.com/learn/flash/actionscript-basics/actionscript-if-condition-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: w3mentor.com @ 2012-02-07 23:15:56 -->
