<?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 for Ed Liang's Weblog</title>
	<atom:link href="http://www.xllusion.net/ed/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xllusion.net/ed</link>
	<description>Flash, Actionscript, Javascript, PHP and more?</description>
	<lastBuildDate>Thu, 21 Jan 2010 21:10:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on FLVPlayback Takes Over When Set to Full Screen by Ed</title>
		<link>http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/comment-page-1/#comment-2006</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Thu, 21 Jan 2010 21:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/#comment-2006</guid>
		<description>If you paste the code into timeline frame, just need to remove &quot;private&quot; in front of function as it is for class only.</description>
		<content:encoded><![CDATA[<p>If you paste the code into timeline frame, just need to remove &#8220;private&#8221; in front of function as it is for class only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FLVPlayback Takes Over When Set to Full Screen by Tazbo</title>
		<link>http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/comment-page-1/#comment-2005</link>
		<dc:creator>Tazbo</dc:creator>
		<pubDate>Thu, 21 Jan 2010 17:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/#comment-2005</guid>
		<description>Hi, I copy and paste the code 

stage.addEventListener(Event.ADDED, onAdded);
 
private function onAdded(e:Event):void {
	if (e.target is FLVPlayback) e.target.fullScreenTakeOver = false;
}

and run my movie I get the error

&#039;1013: The private attribute may be used only on class property definitions.&#039;

Please help.</description>
		<content:encoded><![CDATA[<p>Hi, I copy and paste the code </p>
<p>stage.addEventListener(Event.ADDED, onAdded);</p>
<p>private function onAdded(e:Event):void {<br />
	if (e.target is FLVPlayback) e.target.fullScreenTakeOver = false;<br />
}</p>
<p>and run my movie I get the error</p>
<p>&#8216;1013: The private attribute may be used only on class property definitions.&#8217;</p>
<p>Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 MovieClip enabled property by Stephen</title>
		<link>http://www.xllusion.net/ed/2007/12/29/as3-movieclip-enabled-property/comment-page-1/#comment-2000</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Thu, 07 Jan 2010 10:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2007/12/29/as3-movieclip-enabled-property/#comment-2000</guid>
		<description>Thanks for posting this Ed - it saved me a lot of time.</description>
		<content:encoded><![CDATA[<p>Thanks for posting this Ed &#8211; it saved me a lot of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FLVPlayback Takes Over When Set to Full Screen by Jim</title>
		<link>http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/comment-page-1/#comment-1998</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Sun, 03 Jan 2010 00:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2008/06/04/flvplayback-takes-over-when-set-to-full-screen/#comment-1998</guid>
		<description>Ed,

Thank you so much for sharing this. You seriously saved my butt with this post. Please take the rest of the week off. :)</description>
		<content:encoded><![CDATA[<p>Ed,</p>
<p>Thank you so much for sharing this. You seriously saved my butt with this post. Please take the rest of the week off. <img src='http://www.xllusion.net/ed/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AS3 Custom Event Error #1034 Bug? by Philippe</title>
		<link>http://www.xllusion.net/ed/2008/01/13/as3-custom-event-error-1034-bug/comment-page-1/#comment-1994</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Thu, 24 Dec 2009 22:37:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2008/01/13/as3-custom-event-error-1034-bug/#comment-1994</guid>
		<description>I know that&#039;s an old blog post but the answer is that &quot;allComplete&quot; is an undocumented event of the Flash Player. 

It is actually used by Adobe&#039;s Profiler SWF (listening to its &#039;root&#039;) to be notified when the profiled SWF has finished loading.

As this is dispatched as a basic Event type you&#039;ll obviously get a TypeError if you expect a custom Event class.</description>
		<content:encoded><![CDATA[<p>I know that&#8217;s an old blog post but the answer is that &#8220;allComplete&#8221; is an undocumented event of the Flash Player. </p>
<p>It is actually used by Adobe&#8217;s Profiler SWF (listening to its &#8216;root&#8217;) to be notified when the profiled SWF has finished loading.</p>
<p>As this is dispatched as a basic Event type you&#8217;ll obviously get a TypeError if you expect a custom Event class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unload Video Using CS3 FLVPlayback Component by Majakovskij</title>
		<link>http://www.xllusion.net/ed/2008/04/26/unload-video-using-cs3-flvplayback-component/comment-page-1/#comment-1990</link>
		<dc:creator>Majakovskij</dc:creator>
		<pubDate>Thu, 10 Dec 2009 22:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.xllusion.net/ed/2008/04/26/unload-video-using-cs3-flvplayback-component/#comment-1990</guid>
		<description>nice hint!</description>
		<content:encoded><![CDATA[<p>nice hint!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
