<?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: AS3 Mouse Events and Mouse Related User Actions</title>
	<atom:link href="http://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.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>Sun, 11 Sep 2011 02:17:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: websites accesed so far to help understand ActionScript 3 &#171; Dave Potts Blog</title>
		<link>http://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-286</link>
		<dc:creator>websites accesed so far to help understand ActionScript 3 &#171; Dave Potts Blog</dc:creator>
		<pubDate>Wed, 10 Feb 2010 20:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/#comment-286</guid>
		<description>[...] Flash Enabled Blog – Everything Flash » Blog Archive AS3 Mouse Events and Mouse Related User Acti... [...]</description>
		<content:encoded><![CDATA[<p>[...] Flash Enabled Blog – Everything Flash » Blog Archive AS3 Mouse Events and Mouse Related User Acti&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recorded Videos</title>
		<link>http://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-283</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-283</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-282</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-282</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-281</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-281</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-280</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-280</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-279</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-279</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-278</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-278</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-277</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-277</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-276</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-276</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://www.flashenabledblog.com/2007/06/12/as3-mouse-events-and-mouse-related-user-actions/comment-page-1/#comment-275</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-275</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>
</channel>
</rss>

