<?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: Cursor hand when mouse over images, Actionscript 3-Flash</title>
	<atom:link href="http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 07:31:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Cyn</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-2707</link>
		<dc:creator>Cyn</dc:creator>
		<pubDate>Mon, 08 Aug 2011 17:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-2707</guid>
		<description>You really need dates on your posts and comments

How does:
myMc.buttonMode = true;

set things for the entire stage?  Seems that&#039;s setting it for a movie clip.  Is there some step missing?</description>
		<content:encoded><![CDATA[<p>You really need dates on your posts and comments</p>
<p>How does:<br />
myMc.buttonMode = true;</p>
<p>set things for the entire stage?  Seems that&#8217;s setting it for a movie clip.  Is there some step missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CaptainBinary</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1940</link>
		<dc:creator>CaptainBinary</dc:creator>
		<pubDate>Sat, 30 Apr 2011 16:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1940</guid>
		<description>Thankyou, quite a simple solution yet so difficult to master. Helped with adding more user friendliness with my cloudbar.</description>
		<content:encoded><![CDATA[<p>Thankyou, quite a simple solution yet so difficult to master. Helped with adding more user friendliness with my cloudbar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mevi</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1788</link>
		<dc:creator>mevi</dc:creator>
		<pubDate>Mon, 04 Apr 2011 08:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1788</guid>
		<description>million thanks</description>
		<content:encoded><![CDATA[<p>million thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugo</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1674</link>
		<dc:creator>hugo</dc:creator>
		<pubDate>Wed, 02 Mar 2011 14:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1674</guid>
		<description>THX Dude!!</description>
		<content:encoded><![CDATA[<p>THX Dude!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 程海明</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1595</link>
		<dc:creator>程海明</dc:creator>
		<pubDate>Mon, 10 Jan 2011 06:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1595</guid>
		<description>thanks！</description>
		<content:encoded><![CDATA[<p>thanks！</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sav</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1448</link>
		<dc:creator>Sav</dc:creator>
		<pubDate>Fri, 26 Nov 2010 14:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1448</guid>
		<description>Thanks a bunch! The buttonMode=true statement did the trick :D</description>
		<content:encoded><![CDATA[<p>Thanks a bunch! The buttonMode=true statement did the trick <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eBay Agent</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1439</link>
		<dc:creator>eBay Agent</dc:creator>
		<pubDate>Sat, 20 Nov 2010 19:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1439</guid>
		<description>I just found the solution to this issue that I posted a minute ago. Here is the code:

mcListItem.buttonMode = true;
mcListItem.useHandCursor = true;

mcListItem.mouseChildren   = false;

Setting this property to a MovieClip makes all TextField elements inside this MovieClip to use the same cursor that the MovieClip object uses. In this case it&#039;s a hand.

Another, not a good, solution is to detect a mouse over/our events for a TextField or any other object, and set the Mouse Cursor to what ever you like:

clipHand.addEventListener(MouseEvent.ROLL_OVER,overHand);
clipHand.addEventListener(MouseEvent.ROLL_OUT,outClip);
clipIbeam.addEventListener(MouseEvent.ROLL_OVER,overIbeam);
clipIbeam.addEventListener(MouseEvent.ROLL_OUT,outClip);
clipButton.addEventListener(MouseEvent.ROLL_OVER,overButton);
clipButton.addEventListener(MouseEvent.ROLL_OUT,outClip);
clipArrow.addEventListener(MouseEvent.ROLL_OVER,overArrow);
clipArrow.addEventListener(MouseEvent.ROLL_OUT,outClip);
clipAuto.addEventListener(MouseEvent.ROLL_OVER,overAuto);
clipAuto.addEventListener(MouseEvent.ROLL_OUT,outClip);

function overHand(e:MouseEvent):void {
Mouse.cursor=&quot;hand&quot;;
}

function overIbeam(e:MouseEvent):void {
Mouse.cursor=&quot;ibeam&quot;;
}

function overButton(e:MouseEvent):void {
Mouse.cursor=&quot;button&quot;;
}

function overAuto(e:MouseEvent):void {
Mouse.cursor=&quot;auto&quot;;
}

function overArrow(e:MouseEvent):void {
Mouse.cursor=&quot;arrow&quot;;
}

function outClip(e:MouseEvent):void {
Mouse.cursor=&quot;auto&quot;;
}</description>
		<content:encoded><![CDATA[<p>I just found the solution to this issue that I posted a minute ago. Here is the code:</p>
<p>mcListItem.buttonMode = true;<br />
mcListItem.useHandCursor = true;</p>
<p>mcListItem.mouseChildren   = false;</p>
<p>Setting this property to a MovieClip makes all TextField elements inside this MovieClip to use the same cursor that the MovieClip object uses. In this case it&#8217;s a hand.</p>
<p>Another, not a good, solution is to detect a mouse over/our events for a TextField or any other object, and set the Mouse Cursor to what ever you like:</p>
<p>clipHand.addEventListener(MouseEvent.ROLL_OVER,overHand);<br />
clipHand.addEventListener(MouseEvent.ROLL_OUT,outClip);<br />
clipIbeam.addEventListener(MouseEvent.ROLL_OVER,overIbeam);<br />
clipIbeam.addEventListener(MouseEvent.ROLL_OUT,outClip);<br />
clipButton.addEventListener(MouseEvent.ROLL_OVER,overButton);<br />
clipButton.addEventListener(MouseEvent.ROLL_OUT,outClip);<br />
clipArrow.addEventListener(MouseEvent.ROLL_OVER,overArrow);<br />
clipArrow.addEventListener(MouseEvent.ROLL_OUT,outClip);<br />
clipAuto.addEventListener(MouseEvent.ROLL_OVER,overAuto);<br />
clipAuto.addEventListener(MouseEvent.ROLL_OUT,outClip);</p>
<p>function overHand(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;hand&#8221;;<br />
}</p>
<p>function overIbeam(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;ibeam&#8221;;<br />
}</p>
<p>function overButton(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;button&#8221;;<br />
}</p>
<p>function overAuto(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;auto&#8221;;<br />
}</p>
<p>function overArrow(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;arrow&#8221;;<br />
}</p>
<p>function outClip(e:MouseEvent):void {<br />
Mouse.cursor=&#8221;auto&#8221;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eBay Agent</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1438</link>
		<dc:creator>eBay Agent</dc:creator>
		<pubDate>Sat, 20 Nov 2010 19:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1438</guid>
		<description>Seems like it doesn&#039;t work on TextField

Any idea how can i do it for TextField?

This TextField is included in the MovieClip that is using Hand mouse cursor, but when you mouse over the TextField, the mouse cursor becomes default arrow.</description>
		<content:encoded><![CDATA[<p>Seems like it doesn&#8217;t work on TextField</p>
<p>Any idea how can i do it for TextField?</p>
<p>This TextField is included in the MovieClip that is using Hand mouse cursor, but when you mouse over the TextField, the mouse cursor becomes default arrow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denny</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1400</link>
		<dc:creator>Denny</dc:creator>
		<pubDate>Sun, 24 Oct 2010 16:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1400</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://codingrecipes.com/cursor-hand-when-mouse-over-images-actionscript-3-flash/comment-page-1#comment-1369</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Wed, 22 Sep 2010 17:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=359#comment-1369</guid>
		<description>Thanks, straight to the point !</description>
		<content:encoded><![CDATA[<p>Thanks, straight to the point !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

