<?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: The right way to do RollOver Event in AS3</title>
	<atom:link href="http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/</link>
	<description>Flash, ActionScript, SEO and everything in between</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:16:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Canbey Bilgili</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-10534</link>
		<dc:creator>Canbey Bilgili</dc:creator>
		<pubDate>Mon, 02 Jan 2012 14:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-10534</guid>
		<description>Thank you. I think you should update
function manageMouseOut(event:MouseEvent):void{
  button.removeEventListener(MouseEvent.ROLL_OUT, manageMouseOver);
  button.addEventListener(MouseEvent.ROLL_OVER, manageMouseOut, false, 0, true);
  //your out code here
}

as

function manageMouseOut(event:MouseEvent):void{
  button.removeEventListener(MouseEvent.ROLL_OVER, manageMouseOver);
  button.addEventListener(MouseEvent.ROLL_OUT, manageMouseOut, false, 0, true);
  //your out code here
}</description>
		<content:encoded><![CDATA[<p>Thank you. I think you should update<br />
function manageMouseOut(event:MouseEvent):void{<br />
  button.removeEventListener(MouseEvent.ROLL_OUT, manageMouseOver);<br />
  button.addEventListener(MouseEvent.ROLL_OVER, manageMouseOut, false, 0, true);<br />
  //your out code here<br />
}</p>
<p>as</p>
<p>function manageMouseOut(event:MouseEvent):void{<br />
  button.removeEventListener(MouseEvent.ROLL_OVER, manageMouseOver);<br />
  button.addEventListener(MouseEvent.ROLL_OUT, manageMouseOut, false, 0, true);<br />
  //your out code here<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CAKE</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-7871</link>
		<dc:creator>CAKE</dc:creator>
		<pubDate>Wed, 17 Aug 2011 21:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-7871</guid>
		<description>Hey. Thank you for this fine piece of information. I like your approach on this one.

Have cake.

BUTTERFLY CAKE.</description>
		<content:encoded><![CDATA[<p>Hey. Thank you for this fine piece of information. I like your approach on this one.</p>
<p>Have cake.</p>
<p>BUTTERFLY CAKE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash Event Listeners Tutorials &#187; tutorials blogs</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-7182</link>
		<dc:creator>Flash Event Listeners Tutorials &#187; tutorials blogs</dc:creator>
		<pubDate>Tue, 14 Jun 2011 16:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-7182</guid>
		<description>[...] ActionScript, After Effects etc Add an Event Listener in Actionscript 3 &#8211; nathandemick.com The right way to do RollOver Event in AS3 &#124; MOUSE_OVER and MOUSE_OUT in ActionScript 3 &#124; zedia flash... Using KeyCodes in ActionScript 3 Creating a custom event listener in AS3 &#8211; AS3, actionscript, [...]</description>
		<content:encoded><![CDATA[<p>[...] ActionScript, After Effects etc Add an Event Listener in Actionscript 3 &#8211; nathandemick.com The right way to do RollOver Event in AS3 | MOUSE_OVER and MOUSE_OUT in ActionScript 3 | zedia flash&#8230; Using KeyCodes in ActionScript 3 Creating a custom event listener in AS3 &#8211; AS3, actionscript, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Sharpe</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5418</link>
		<dc:creator>Dave Sharpe</dc:creator>
		<pubDate>Mon, 13 Sep 2010 22:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5418</guid>
		<description>I have been searching on buttons. I am not super proficient in AS3. I have having an issue with buttons. I have a master movie with navigation that loads a series of external swfs. The external swfs have buttons, which navigate their timeline. My issue, the cursor does not change to pointer on rollOver over the buttons in the external swfs are loaded. The pointer changes when these movies are played individually, but not when loaded through the main movie. It seems to be a bug. It does work sometimes, but not always. I have a lot of buttons, would hate to write an rollOver, rollOut for 200 buttons. Any ideas what what may be wrong?</description>
		<content:encoded><![CDATA[<p>I have been searching on buttons. I am not super proficient in AS3. I have having an issue with buttons. I have a master movie with navigation that loads a series of external swfs. The external swfs have buttons, which navigate their timeline. My issue, the cursor does not change to pointer on rollOver over the buttons in the external swfs are loaded. The pointer changes when these movies are played individually, but not when loaded through the main movie. It seems to be a bug. It does work sometimes, but not always. I have a lot of buttons, would hate to write an rollOver, rollOut for 200 buttons. Any ideas what what may be wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hozefa</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5350</link>
		<dc:creator>Hozefa</dc:creator>
		<pubDate>Tue, 03 Aug 2010 06:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5350</guid>
		<description>&lt;a href=&quot;#comment-4771&quot; rel=&quot;nofollow&quot;&gt;@Edwinistrator&lt;/a&gt; 
Hi Can you please upload the complete file in a zip format. It will be real helpful to me</description>
		<content:encoded><![CDATA[<p><a href="#comment-4771" rel="nofollow">@Edwinistrator</a><br />
Hi Can you please upload the complete file in a zip format. It will be real helpful to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RazorX</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5327</link>
		<dc:creator>RazorX</dc:creator>
		<pubDate>Tue, 27 Jul 2010 15:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5327</guid>
		<description>It seems better to use ROLL_OVER, but what makes things difficult (especially for beginners) is that in Flash CS5 Pro the code snippets feature pumps out MouseEvent.MOUSE_OVER and in the comments they don&#039;t even tell you you need to be mindful of possibly needing to add in mouseChildren = false; to avoid nested movieclip blinking. :(</description>
		<content:encoded><![CDATA[<p>It seems better to use ROLL_OVER, but what makes things difficult (especially for beginners) is that in Flash CS5 Pro the code snippets feature pumps out MouseEvent.MOUSE_OVER and in the comments they don&#8217;t even tell you you need to be mindful of possibly needing to add in mouseChildren = false; to avoid nested movieclip blinking. <img src='http://www.zedia.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giorgos</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5319</link>
		<dc:creator>Giorgos</dc:creator>
		<pubDate>Mon, 26 Jul 2010 10:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5319</guid>
		<description>I agree with you post.

However let&#039;s not go crazy with naming conventions. There is a limit on what we should do.
I am very strict on commenting, naming variables and function and all other &quot;best practises&quot;. I agree with 99% of them. 
But to actually have to name the event in the listener signature event instead of e it&#039;s totally nuts.
Let&#039;s not assume that everybode else is stupid!!
And it&#039;s not the same like naming variables! A variable has to have a descriptive name as it can be anything (and be anywhere). In a listener&#039;s signature, the first argument is always an event. So what&#039;s the point on naming it event? Waste of 4 characters!!! ;)

thanks

Giorgos</description>
		<content:encoded><![CDATA[<p>I agree with you post.</p>
<p>However let&#8217;s not go crazy with naming conventions. There is a limit on what we should do.<br />
I am very strict on commenting, naming variables and function and all other &#8220;best practises&#8221;. I agree with 99% of them.<br />
But to actually have to name the event in the listener signature event instead of e it&#8217;s totally nuts.<br />
Let&#8217;s not assume that everybode else is stupid!!<br />
And it&#8217;s not the same like naming variables! A variable has to have a descriptive name as it can be anything (and be anywhere). In a listener&#8217;s signature, the first argument is always an event. So what&#8217;s the point on naming it event? Waste of 4 characters!!! <img src='http://www.zedia.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>thanks</p>
<p>Giorgos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5230</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Tue, 22 Jun 2010 17:59:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5230</guid>
		<description>Yes, you&#039;ve eliminated one of the roll over listeners, but you still need a click listener.... after all it is a button...</description>
		<content:encoded><![CDATA[<p>Yes, you&#8217;ve eliminated one of the roll over listeners, but you still need a click listener&#8230;. after all it is a button&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madelon</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-5223</link>
		<dc:creator>Madelon</dc:creator>
		<pubDate>Sun, 20 Jun 2010 11:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-5223</guid>
		<description>Great Help!! Thanks :D</description>
		<content:encoded><![CDATA[<p>Great Help!! Thanks <img src='http://www.zedia.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sinozzuke</title>
		<link>http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/comment-page-1/#comment-4903</link>
		<dc:creator>sinozzuke</dc:creator>
		<pubDate>Thu, 18 Mar 2010 14:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2008/the-right-way-to-do-rollover-event-in-as3/#comment-4903</guid>
		<description>&lt;a href=&quot;#comment-4771&quot; rel=&quot;nofollow&quot;&gt;@Edwinistrator&lt;/a&gt; 
Hi!. I&#039;m trying to use your metod, but I have done a ClickableMovieClip.as and import this to my file. But don&#039;t know how to use it. This way?:

var botonsector:ClickableMovieClip = new btn();</description>
		<content:encoded><![CDATA[<p><a href="#comment-4771" rel="nofollow">@Edwinistrator</a><br />
Hi!. I&#8217;m trying to use your metod, but I have done a ClickableMovieClip.as and import this to my file. But don&#8217;t know how to use it. This way?:</p>
<p>var botonsector:ClickableMovieClip = new btn();</p>
]]></content:encoded>
	</item>
</channel>
</rss>

