<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - flash - 9.0 - ActionScriptLangRefV3 - flash/display/InteractiveObject.html</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T12:21:21</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#85961" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#82375" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#73632" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67934" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67732" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#66869" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#85961">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#85961</link>
		<description>After hours of testing, it looks like when you assign a tabindex  to a TextField then that text field will not be collected by the garbage collector. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I created 5 text fields via a for loop. Set tabindex for each of them. Then I setup a listener for the mouse Down event. In the listener I am removing the textfields (with removeChild) and delete all references to the text fields. The text fields are not picked up by garbage collector.&lt;br /&gt;&lt;br /&gt;If I comment out the line that sets the tabIndex, as soon as I remove the text field and I run the garbage collector from the Flex Profiller, teh text fields are removed from memory. &lt;br /&gt;&lt;br /&gt;Is it only me that has this problem? I have the latest version of everything. &lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Tony</description>
		<dc:creator>Tonyyyys2</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-07-21T14:30:42</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#82375">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#82375</link>
		<description>in refense to the previous post I believe to fix it, the ROLL_OUT event should be listened for by bar.&lt;br /&gt;&lt;br /&gt;class Foo extends MovieClip&lt;br /&gt;{&lt;br /&gt;// bar is a movie that is not my child, but occupies the same area as me on the stage&lt;br /&gt;private bar:MovieClip;&lt;br /&gt;&lt;br /&gt;public function Foo() &lt;br /&gt;{&lt;br /&gt;bar.visible = false;&lt;br /&gt;addEventListener(Mouse.MOUSE_OVER, over);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public function over(evt:MouseEvent):void&lt;br /&gt;{&lt;br /&gt;bar.visible = true;&lt;br /&gt;bar.addEventListener(Mouse.MOUSE_OUT, out);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public function out(evt:MouseEvent):void&lt;br /&gt;{&lt;br /&gt;bar.visible = false;&lt;br /&gt;bar.removeEventListener(Mouse.MOUSE_OUT, out);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;hope this helps someone</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2008-03-27T08:09:42</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#73632">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#73632</link>
		<description>If the mouse is over a movie, and another movie that is not a child of the movie is added/made visible in the same place the mouse is, the mouse will generate a mouse_out/roll_out event, even though the mouse is still over the original movie. This is not the same behavior as AS2. For example:&lt;br /&gt;&lt;br /&gt;class Foo extends MovieClip&lt;br /&gt;{&lt;br /&gt;    // bar is a movie that is not my child, but occupies the same area as me on the stage&lt;br /&gt;    private bar:MovieClip;&lt;br /&gt;&lt;br /&gt;    public function Foo() &lt;br /&gt;    {&lt;br /&gt;        bar.visible = false;&lt;br /&gt;        addEventListener(Mouse.MOUSE_OVER, over);&lt;br /&gt;        addEventListener(Mouse.MOUSE_OUT, out);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public function over(evt:MouseEvent):void&lt;br /&gt;    {&lt;br /&gt;        bar.visible = true;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public function out(evt:MouseEvent):void&lt;br /&gt;    {&lt;br /&gt;        bar.visible = false;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;This will cause bar to flicker on and off when the user moves the mouse over Foo, instead of showing bar when the mouse is over Foo and hiding it when the mouse is moved off of Foo.</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-09-13T13:23:18</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67934">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67934</link>
		<description>onReleaseOutside is replaced in the new event model by a mouseUp event.&lt;br&gt;http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/migration.html</description>
		<dc:creator>tderich</dc:creator>
		<dc:type>1 1</dc:type>
		<dc:date>2007-06-05T10:13:06</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67732">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#67732</link>
		<description>Why did they remove releaseOutside?  I found it very useful for dragging operations.</description>
		<dc:creator>MaxVT103</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-06-01T07:54:52</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#66869">
		<title>flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html</title>
		<link>http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/InteractiveObject.html#66869</link>
		<description>' No event is dispatched by setting this property '&lt;br /&gt;&lt;br /&gt;I add addEventListener(MouseEvent.MOUSE_out,out) listner in MovieClip,&lt;br /&gt;&lt;br /&gt;and when I add mouseEnabled=false, that 'out' function will be triggered&lt;br /&gt;why?</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2007-05-15T22:59:39</dc:date>
	</item>
	</rdf:RDF>

