<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: The Event Object</title>
	<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/</link>
	<description>A digital supplement for the O'Reilly book</description>
	<pubDate>Sat, 04 Feb 2012 06:09:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Rich</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-6437</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Tue, 27 Apr 2010 11:02:58 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-6437</guid>
		<description>@David, thanks for your support! CS5 still uses AS3, and all the learning fundamentals remain the same from CS3 onward. I hope you enjoy the book!</description>
		<content:encoded><![CDATA[<p>@David, thanks for your support! CS5 still uses AS3, and all the learning fundamentals remain the same from CS3 onward. I hope you enjoy the book!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-6436</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 27 Apr 2010 06:21:36 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-6436</guid>
		<description>Awesome explanation. I need your book!!! Do you have a new version coming out for CS5 or is that still using AS3?
Fantastic job explaining the ins and outs of the event object. I was really stuck on this but I have just got my function to work correctly and now I am going back and streamlining all the previous ones that I had written the hard way (long way).

Love it, thanks heaps.

David.</description>
		<content:encoded><![CDATA[<p>Awesome explanation. I need your book!!! Do you have a new version coming out for CS5 or is that still using AS3?<br />
Fantastic job explaining the ins and outs of the event object. I was really stuck on this but I have just got my function to work correctly and now I am going back and streamlining all the previous ones that I had written the hard way (long way).</p>
<p>Love it, thanks heaps.</p>
<p>David.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rasterstudios</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-4245</link>
		<dc:creator>Rasterstudios</dc:creator>
		<pubDate>Wed, 14 Oct 2009 19:13:47 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-4245</guid>
		<description>This one helped me as well, and I got your book too. very nice book with neat chapters and the look and feel is great! Thanks you so much Rich Shupe and Zevan Rosser!</description>
		<content:encoded><![CDATA[<p>This one helped me as well, and I got your book too. very nice book with neat chapters and the look and feel is great! Thanks you so much Rich Shupe and Zevan Rosser!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-3111</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Tue, 09 Jun 2009 15:25:08 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-3111</guid>
		<description>Very nice article, this one helped me as well.</description>
		<content:encoded><![CDATA[<p>Very nice article, this one helped me as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-38</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Mon, 24 Mar 2008 05:37:07 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-38</guid>
		<description>Thanks for letting us know about your success, Rodney!</description>
		<content:encoded><![CDATA[<p>Thanks for letting us know about your success, Rodney!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rodney Gracia</title>
		<link>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-30</link>
		<dc:creator>Rodney Gracia</dc:creator>
		<pubDate>Wed, 27 Feb 2008 17:26:10 +0000</pubDate>
		<guid>http://www.learningactionscript3.com/2007/11/17/the-event-object/#comment-30</guid>
		<description>A colleague and I are designing an application that uses drag and drop functionality. The movie clips being dragged have a dynamic text field inside that will be populated programmatically with AS. We have added the listeners that check for MouseDown and MouseUp to the movie clips (parents of the text field). Now we reference the movie clip being dragged in the test functions that start and stop the dragging as "event.target"; we noticed that if the object below the mouse when dragging begins is the movie clip background, not the text field, the dragging works, however, if you happen to click on the dynamic text field and start dragging, the reference to "event.target" generates an error: 

ReferenceError: Error #1069: Property startDrag not found on flash.text.TextField and there is no default value.
	at 00_start_stop_drag_fla::MainTimeline/onStartDrag()
myMovieClip2

So even though we are dragging an entire movie clip, because of the way event.target works it fails when the target is the text field inside the MC. This article showed me how to fix that. We use currentTarget instead and the app now works well.</description>
		<content:encoded><![CDATA[<p>A colleague and I are designing an application that uses drag and drop functionality. The movie clips being dragged have a dynamic text field inside that will be populated programmatically with AS. We have added the listeners that check for MouseDown and MouseUp to the movie clips (parents of the text field). Now we reference the movie clip being dragged in the test functions that start and stop the dragging as &#8220;event.target&#8221;; we noticed that if the object below the mouse when dragging begins is the movie clip background, not the text field, the dragging works, however, if you happen to click on the dynamic text field and start dragging, the reference to &#8220;event.target&#8221; generates an error: </p>
<p>ReferenceError: Error #1069: Property startDrag not found on flash.text.TextField and there is no default value.<br />
	at 00_start_stop_drag_fla::MainTimeline/onStartDrag()<br />
myMovieClip2</p>
<p>So even though we are dragging an entire movie clip, because of the way event.target works it fails when the target is the text field inside the MC. This article showed me how to fix that. We use currentTarget instead and the app now works well.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

