<?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"
	>
<channel>
	<title>Comments on: Disabling Mouse Events in AS3</title>
	<atom:link href="http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/</link>
	<description>An Ongoing Story About Why Two Heads Are Better Than One</description>
	<pubDate>Tue, 07 Sep 2010 19:22:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: keeners</title>
		<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-2057</link>
		<dc:creator>keeners</dc:creator>
		<pubDate>Sat, 20 Mar 2010 13:40:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-2057</guid>
		<description>I had a custom mouse cursor that swapped icons on mouse_down (stage listener), and found myself wondering where my double_click events underneath the mouse cursor were going. I now have a new best practice - always disable the custom cursor if used. Hopefully this saves someone some grief :)

custom_mouse_cursor.mouseChildren = false;
custom_mouse_cursor.mouseEnabled = false;</description>
		<content:encoded><![CDATA[<p>I had a custom mouse cursor that swapped icons on mouse_down (stage listener), and found myself wondering where my double_click events underneath the mouse cursor were going. I now have a new best practice - always disable the custom cursor if used. Hopefully this saves someone some grief <img src='http://www.visualgratis.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>custom_mouse_cursor.mouseChildren = false;<br />
custom_mouse_cursor.mouseEnabled = false;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1179</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Wed, 15 Apr 2009 04:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1179</guid>
		<description>If by underlying you mean inside the movieclip or display object you just disabled, you'll want to do as ramiro suggested, by using something like mc.mouseChildren = false;

Not quite sure what you mean about the masks. Masks by themselves (as far as I know) do not receive mouse events. If you want to stop something from receiving mouse events, you have to use mouseEnabled = false on each and every one. But this would only be pertinent if you actually have event listeners for the underlying objects, like mcUnderneath.addEventListener( etc...</description>
		<content:encoded><![CDATA[<p>If by underlying you mean inside the movieclip or display object you just disabled, you&#8217;ll want to do as ramiro suggested, by using something like mc.mouseChildren = false;</p>
<p>Not quite sure what you mean about the masks. Masks by themselves (as far as I know) do not receive mouse events. If you want to stop something from receiving mouse events, you have to use mouseEnabled = false on each and every one. But this would only be pertinent if you actually have event listeners for the underlying objects, like mcUnderneath.addEventListener( etc&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fred</title>
		<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1177</link>
		<dc:creator>fred</dc:creator>
		<pubDate>Tue, 14 Apr 2009 14:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1177</guid>
		<description>How would you go about masks ?
This doesn't seem to stop it from blocking mouseEvents on underlying objects..?
Unless i'm missing something..</description>
		<content:encoded><![CDATA[<p>How would you go about masks ?<br />
This doesn&#8217;t seem to stop it from blocking mouseEvents on underlying objects..?<br />
Unless i&#8217;m missing something..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1063</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Sun, 01 Mar 2009 01:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1063</guid>
		<description>Hey ramiro, yes I did find that out soon after I wrote this post. I am glad to say that whatever doubts I've had about moving to AS3 is completely gone, it's just flat out better than AS2.</description>
		<content:encoded><![CDATA[<p>Hey ramiro, yes I did find that out soon after I wrote this post. I am glad to say that whatever doubts I&#8217;ve had about moving to AS3 is completely gone, it&#8217;s just flat out better than AS2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramiro</title>
		<link>http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1061</link>
		<dc:creator>Ramiro</dc:creator>
		<pubDate>Sat, 28 Feb 2009 20:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.visualgratis.com/2008/09/05/disabling-mouse-events-in-as3/#comment-1061</guid>
		<description>this is a little old, but there's a way to solve the children mouseEnabled problem:
mc.mouseEnabled = false;
mc.mouseChildren = false;

:)</description>
		<content:encoded><![CDATA[<p>this is a little old, but there&#8217;s a way to solve the children mouseEnabled problem:<br />
mc.mouseEnabled = false;<br />
mc.mouseChildren = false;</p>
<p> <img src='http://www.visualgratis.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
