<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: AS3 Mouse Events and Mouse Related User Actions</title>
	<atom:link href="http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/feed/" rel="self" type="application/rss+xml" />
	<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/</link>
	<description>A Blog covering Air, Flash, Flex, Illustrator and Photoshop</description>
	<lastBuildDate>Tue, 27 Oct 2009 14:26:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Recorded Videos</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18392</link>
		<dc:creator>Recorded Videos</dc:creator>
		<pubDate>Mon, 10 Aug 2009 04:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18392</guid>
		<description>thank you for - it helped me alot !</description>
		<content:encoded><![CDATA[<p>thank you for &#8211; it helped me alot !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: טכנאי מחשבים</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18385</link>
		<dc:creator>טכנאי מחשבים</dc:creator>
		<pubDate>Tue, 04 Aug 2009 02:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18385</guid>
		<description>thank you for sharing this one!very usefull stuff!</description>
		<content:encoded><![CDATA[<p>thank you for sharing this one!very usefull stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mookstar</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18382</link>
		<dc:creator>mookstar</dc:creator>
		<pubDate>Fri, 31 Jul 2009 11:33:01 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18382</guid>
		<description>@DavidC - Yes, you do

@Paulie - it was even more illogical in AS2, but very easy to use for beginners

@Webmaster - useful tute, good stuff

kbai</description>
		<content:encoded><![CDATA[<p>@DavidC &#8211; Yes, you do</p>
<p>@Paulie &#8211; it was even more illogical in AS2, but very easy to use for beginners</p>
<p>@Webmaster &#8211; useful tute, good stuff</p>
<p>kbai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulie</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18116</link>
		<dc:creator>Paulie</dc:creator>
		<pubDate>Wed, 13 May 2009 10:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-18116</guid>
		<description>OMG Actionscript is such a bodged language. Java programmer, the everything is extremely un-Java in my opinion.
addEventListener(MouseEvent.CLICK, ClickMe)
function Clickme(e:MouseEvent){}

The examples I&#039;ve seen used all over, I see people cutting and pasting this sort of function dozens of times.
And why doesn&#039;t Clickme require a MouseClick event to be passed in? 

Shouldn&#039;t that be something like (I know this doesn&#039;t work, but I&#039;m trying to make a point!)
addEventListener(MouseEvent.CLICK, ClickMe(New MouseEvent(), &quot;myClickedValue&quot;);
function Clickme(e:MouseEvent, String myString){
  gotoAndBugger(myString);
}

I&#039;ve played around with the API, some decent examples in the Documentation, but its a frustratingly illogical language IMO. With lack of decent Codecompletion, and vague Fuzzy typing, it makes for a real hacked mess. And why &#039;e:String&#039; not &#039;String e&#039;? And why not public void function...not public function(mess):void?

Maybe more time will make things see less bodged.</description>
		<content:encoded><![CDATA[<p>OMG Actionscript is such a bodged language. Java programmer, the everything is extremely un-Java in my opinion.<br />
addEventListener(MouseEvent.CLICK, ClickMe)<br />
function Clickme(e:MouseEvent){}</p>
<p>The examples I&#8217;ve seen used all over, I see people cutting and pasting this sort of function dozens of times.<br />
And why doesn&#8217;t Clickme require a MouseClick event to be passed in? </p>
<p>Shouldn&#8217;t that be something like (I know this doesn&#8217;t work, but I&#8217;m trying to make a point!)<br />
addEventListener(MouseEvent.CLICK, ClickMe(New MouseEvent(), &#8220;myClickedValue&#8221;);<br />
function Clickme(e:MouseEvent, String myString){<br />
  gotoAndBugger(myString);<br />
}</p>
<p>I&#8217;ve played around with the API, some decent examples in the Documentation, but its a frustratingly illogical language IMO. With lack of decent Codecompletion, and vague Fuzzy typing, it makes for a real hacked mess. And why &#8216;e:String&#8217; not &#8216;String e&#8217;? And why not public void function&#8230;not public function(mess):void?</p>
<p>Maybe more time will make things see less bodged.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17922</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Thu, 09 Apr 2009 10:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17922</guid>
		<description>Event.MOUSE_LEAVE not MouseEvent.MOUSE_LEAVE</description>
		<content:encoded><![CDATA[<p>Event.MOUSE_LEAVE not MouseEvent.MOUSE_LEAVE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shoomanitabib</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17510</link>
		<dc:creator>Shoomanitabib</dc:creator>
		<pubDate>Sat, 20 Dec 2008 05:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17510</guid>
		<description>The good resource should be brought in bookmarks</description>
		<content:encoded><![CDATA[<p>The good resource should be brought in bookmarks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17381</link>
		<dc:creator>james</dc:creator>
		<pubDate>Fri, 21 Nov 2008 20:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-17381</guid>
		<description>I am currently a student at a technical college. My question concerns that of a Flash nature (I think). I want to create an image with lighting and shadows, but I want the the lighting and shadows to move with the position of the mouse, as if the mouse were the lightsource. I was wondering if this were possible, and if so, would the file size be excrutiatingly huge. I know this question may be very elementary, but, as i said before, I am a student who is still in the learning phase, and I think it would make a cool effect on my portfolio page.</description>
		<content:encoded><![CDATA[<p>I am currently a student at a technical college. My question concerns that of a Flash nature (I think). I want to create an image with lighting and shadows, but I want the the lighting and shadows to move with the position of the mouse, as if the mouse were the lightsource. I was wondering if this were possible, and if so, would the file size be excrutiatingly huge. I know this question may be very elementary, but, as i said before, I am a student who is still in the learning phase, and I think it would make a cool effect on my portfolio page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DavidC</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-16468</link>
		<dc:creator>DavidC</dc:creator>
		<pubDate>Thu, 17 Jul 2008 15:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-16468</guid>
		<description>Do I have to call this line &quot;import flash.events.MouseEvent;&quot; to use the mouse events?</description>
		<content:encoded><![CDATA[<p>Do I have to call this line &#8220;import flash.events.MouseEvent;&#8221; to use the mouse events?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Helton</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-14043</link>
		<dc:creator>Nick Helton</dc:creator>
		<pubDate>Mon, 21 Jan 2008 00:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-14043</guid>
		<description>Lanny thanks you so much for the bit about useCapture for releaseOutside, I could not figure out why this was not working for me and you saved me many future headaches</description>
		<content:encoded><![CDATA[<p>Lanny thanks you so much for the bit about useCapture for releaseOutside, I could not figure out why this was not working for me and you saved me many future headaches</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sidney de Koning</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-12885</link>
		<dc:creator>Sidney de Koning</dc:creator>
		<pubDate>Thu, 13 Dec 2007 14:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-12885</guid>
		<description>Hi,

For using right click in AS3 check out this link:
http://www.uza.lt/blog/2007/08/solved-right-click-in-as3/

Hope this helps,

Sidney</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>For using right click in AS3 check out this link:<br />
<a href="http://www.uza.lt/blog/2007/08/solved-right-click-in-as3/" rel="nofollow">http://www.uza.lt/blog/2007/08/solved-right-click-in-as3/</a></p>
<p>Hope this helps,</p>
<p>Sidney</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phong</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-10796</link>
		<dc:creator>Phong</dc:creator>
		<pubDate>Wed, 31 Oct 2007 19:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-10796</guid>
		<description>Actually, it is the Event.MOUSE_LEAVE, NOT MouseEvent.MOUSE_LEAVE. And you register it the &quot;stage&quot; like this: stage.addEventListener(Event.MOUSE_LEAVE, onMouseLeave)</description>
		<content:encoded><![CDATA[<p>Actually, it is the Event.MOUSE_LEAVE, NOT MouseEvent.MOUSE_LEAVE. And you register it the &#8220;stage&#8221; like this: stage.addEventListener(Event.MOUSE_LEAVE, onMouseLeave)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TroyWorks &#187; Blog Archive &#187; Mouse Click Lifecycle</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-9546</link>
		<dc:creator>TroyWorks &#187; Blog Archive &#187; Mouse Click Lifecycle</dc:creator>
		<pubDate>Sat, 22 Sep 2007 06:12:36 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-9546</guid>
		<description>[...] gotcha, was the removal of releaseOutside. The comments here somewhat cover it. Though for my own solution I ended up using rollOver and rollOut to register the [...]</description>
		<content:encoded><![CDATA[<p>[...] gotcha, was the removal of releaseOutside. The comments here somewhat cover it. Though for my own solution I ended up using rollOver and rollOut to register the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: binodasingh</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-9200</link>
		<dc:creator>binodasingh</dc:creator>
		<pubDate>Wed, 12 Sep 2007 07:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-9200</guid>
		<description>Hi, As you have written above as &quot;In the MouseClick event there is a buttonDown property on the event that returns true if its a left click, false if its any other mouse button. &quot; But  when I tried this I got result as false when I left clicked and nothing on right click or wheelClick.

I am new to wordPress creating a new blog too.</description>
		<content:encoded><![CDATA[<p>Hi, As you have written above as &#8220;In the MouseClick event there is a buttonDown property on the event that returns true if its a left click, false if its any other mouse button. &#8221; But  when I tried this I got result as false when I left clicked and nothing on right click or wheelClick.</p>
<p>I am new to wordPress creating a new blog too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lanny</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-6462</link>
		<dc:creator>Lanny</dc:creator>
		<pubDate>Wed, 25 Jul 2007 16:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-6462</guid>
		<description>Regarding ROLL_OVER vs MOUSE_OVER:  You will receive only one ROLL_OVER event when you roll over children of a clip, however using MOUSE_OVER, you will continue to get events when your mouse enters the children of a clip. (That is unless you set the mouseChildren to false)</description>
		<content:encoded><![CDATA[<p>Regarding ROLL_OVER vs MOUSE_OVER:  You will receive only one ROLL_OVER event when you roll over children of a clip, however using MOUSE_OVER, you will continue to get events when your mouse enters the children of a clip. (That is unless you set the mouseChildren to false)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lanny</title>
		<link>http://flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-6461</link>
		<dc:creator>Lanny</dc:creator>
		<pubDate>Wed, 25 Jul 2007 16:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-6461</guid>
		<description>@kent: You should use stage instead of root when listening for a mouse up outside event.  Additionally, set useCapture to true so that you ensure you get the event.

stage.addEventListener(MouseEvent.MOUSE_UP, handler, true)</description>
		<content:encoded><![CDATA[<p>@kent: You should use stage instead of root when listening for a mouse up outside event.  Additionally, set useCapture to true so that you ensure you get the event.</p>
<p>stage.addEventListener(MouseEvent.MOUSE_UP, handler, true)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
