<?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: Flash AS3 using FLVPlayback and Full Screen Mode</title>
	<atom:link href="http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:42:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Jeff Benefit</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-907</link>
		<dc:creator>Jeff Benefit</dc:creator>
		<pubDate>Wed, 18 Jan 2012 11:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-907</guid>
		<description>Thanks a lot  mate, this really made it although for some reason it first listed some misspelling errors.</description>
		<content:encoded><![CDATA[<p>Thanks a lot  mate, this really made it although for some reason it first listed some misspelling errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saddam Hussien</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-890</link>
		<dc:creator>Saddam Hussien</dc:creator>
		<pubDate>Sun, 04 Dec 2011 21:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-890</guid>
		<description>for Actionscript 3 the best solution is this:

in the first frame of your flash file add this code:

    import flash.system.fscommand;
    fscommand(&quot;fullscreen&quot;, &quot;true&quot;);
    fscommand(&quot;allowscale&quot;, &quot;false&quot;);

    stage.addEventListener(Event.ADDED, FLVAdded, true);

    function FLVAdded(e:Event):void
    {
        if (e.target is FLVPlayback)
        {
            e.target.fullScreenTakeOver = false;
        }
    } 


FLVPlayback component is bugy, and to make (xyz.fullScreenTakeOver = false) work, then it must be excuted before the FLVPlayback instance is TRULY added to the stage. So, you can not do that by just adding the code (xyz.fullScreenTakeOver = false) to the same frame where the xyz instance of the  FLVPlayback is added to the stage. The above code will solve this problem. Make sure that the video played by the FLVPlayback component is in the same folder of the resulting compiled SWF or EXE file. If you are using FLVPlayback with skin, then make sure the generated skin SWF file is in the same folder of your main SWF file. Hope this will help some people.</description>
		<content:encoded><![CDATA[<p>for Actionscript 3 the best solution is this:</p>
<p>in the first frame of your flash file add this code:</p>
<p>    import flash.system.fscommand;<br />
    fscommand(&#8220;fullscreen&#8221;, &#8220;true&#8221;);<br />
    fscommand(&#8220;allowscale&#8221;, &#8220;false&#8221;);</p>
<p>    stage.addEventListener(Event.ADDED, FLVAdded, true);</p>
<p>    function FLVAdded(e:Event):void<br />
    {<br />
        if (e.target is FLVPlayback)<br />
        {<br />
            e.target.fullScreenTakeOver = false;<br />
        }<br />
    } </p>
<p>FLVPlayback component is bugy, and to make (xyz.fullScreenTakeOver = false) work, then it must be excuted before the FLVPlayback instance is TRULY added to the stage. So, you can not do that by just adding the code (xyz.fullScreenTakeOver = false) to the same frame where the xyz instance of the  FLVPlayback is added to the stage. The above code will solve this problem. Make sure that the video played by the FLVPlayback component is in the same folder of the resulting compiled SWF or EXE file. If you are using FLVPlayback with skin, then make sure the generated skin SWF file is in the same folder of your main SWF file. Hope this will help some people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azhar Kamar</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-818</link>
		<dc:creator>Azhar Kamar</dc:creator>
		<pubDate>Thu, 03 Nov 2011 07:06:33 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-818</guid>
		<description>awesome! thanks for the tip. wonder why the fullscreen function isn&#039;t built into component inspector.</description>
		<content:encoded><![CDATA[<p>awesome! thanks for the tip. wonder why the fullscreen function isn&#8217;t built into component inspector.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PIIANTOM</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-666</link>
		<dc:creator>PIIANTOM</dc:creator>
		<pubDate>Fri, 08 Jul 2011 12:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-666</guid>
		<description>Super!!! Thanks a ton, you saved my day!!</description>
		<content:encoded><![CDATA[<p>Super!!! Thanks a ton, you saved my day!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MissHD</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-653</link>
		<dc:creator>MissHD</dc:creator>
		<pubDate>Thu, 09 Jun 2011 14:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-653</guid>
		<description>Thank you very much ! You save me !</description>
		<content:encoded><![CDATA[<p>Thank you very much ! You save me !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SirDidymus</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-642</link>
		<dc:creator>SirDidymus</dc:creator>
		<pubDate>Tue, 17 May 2011 07:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-642</guid>
		<description>Thanks so much for posting this. This saved me tons of work.</description>
		<content:encoded><![CDATA[<p>Thanks so much for posting this. This saved me tons of work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niklas</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-641</link>
		<dc:creator>Niklas</dc:creator>
		<pubDate>Fri, 13 May 2011 10:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-641</guid>
		<description>You saved my computer from taking a bath in the river! Thanks a lot! This is exactly what i was looking for! Too bad that Adobe does such an excellent job hiding those little details in the docs ;)
Thanks again!</description>
		<content:encoded><![CDATA[<p>You saved my computer from taking a bath in the river! Thanks a lot! This is exactly what i was looking for! Too bad that Adobe does such an excellent job hiding those little details in the docs <img src='http://newsourcemedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ade</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-615</link>
		<dc:creator>Ade</dc:creator>
		<pubDate>Mon, 21 Mar 2011 18:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-615</guid>
		<description>OMFG You have no idea how long I&#039;ve been searching Adobe docs trying to find the reason why my FLVPlayer was behaving strangely when my projector was going fullscreen. Thank you being my random saviour!</description>
		<content:encoded><![CDATA[<p>OMFG You have no idea how long I&#8217;ve been searching Adobe docs trying to find the reason why my FLVPlayer was behaving strangely when my projector was going fullscreen. Thank you being my random saviour!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrwizzer</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-558</link>
		<dc:creator>mrwizzer</dc:creator>
		<pubDate>Fri, 31 Dec 2010 18:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-558</guid>
		<description>God bless ya, lad!  Just what the doctor ordered!  Saved me a ton of grief.</description>
		<content:encoded><![CDATA[<p>God bless ya, lad!  Just what the doctor ordered!  Saved me a ton of grief.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://newsourcemedia.com/blog/flash-as3-using-flvplayback-and-full-screen-mode/comment-page-1/#comment-552</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Thu, 09 Dec 2010 20:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://newsourcemedia.com/blog/2008/02/23/flash-as3-using-flvplayback-and-full-screen-mode/#comment-552</guid>
		<description>Perfect! Thanks</description>
		<content:encoded><![CDATA[<p>Perfect! Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
