<?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: Check Flash Player Version</title>
	<atom:link href="http://www.beautifycode.com/snippet-check-flash-player-version/feed" rel="self" type="application/rss+xml" />
	<link>http://www.beautifycode.com/snippet-check-flash-player-version?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=snippet-check-flash-player-version</link>
	<description>AS3, Adobe AIR &#38; Mobile Development</description>
	<lastBuildDate>Fri, 03 Feb 2012 18:54:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: sigman</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-1836</link>
		<dc:creator>sigman</dc:creator>
		<pubDate>Tue, 07 Dec 2010 10:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-1836</guid>
		<description>Great snippet, thanks for sharing!

@Anonymous: It comes handy when you want to use one of the new features of FlashPlayer 10. In example if you use FileReference to save a file and the user is on version 9.</description>
		<content:encoded><![CDATA[<p>Great snippet, thanks for sharing!</p>
<p>@Anonymous: It comes handy when you want to use one of the new features of FlashPlayer 10. In example if you use FileReference to save a file and the user is on version 9.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-694</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 02 Aug 2010 14:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-694</guid>
		<description>Neat, except that your demo snippet doesn&#039;t show up on Flash Player 8 and below because there is no such thing as Actionscript 3 there. So frankly I don&#039;t even get what is that Compatibility class for?</description>
		<content:encoded><![CDATA[<p>Neat, except that your demo snippet doesn&#8217;t show up on Flash Player 8 and below because there is no such thing as Actionscript 3 there. So frankly I don&#8217;t even get what is that Compatibility class for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Navid</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-386</link>
		<dc:creator>Navid</dc:creator>
		<pubDate>Mon, 31 May 2010 17:50:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-386</guid>
		<description>I want to check the version and after checking if the player is under version 10, the flash run a.exe appilication that contains flash player V10 ...
what should I do ?</description>
		<content:encoded><![CDATA[<p>I want to check the version and after checking if the player is under version 10, the flash run a.exe appilication that contains flash player V10 &#8230;<br />
what should I do ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samBrown</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-321</link>
		<dc:creator>samBrown</dc:creator>
		<pubDate>Wed, 17 Feb 2010 22:50:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-321</guid>
		<description>thanks for the snippet, very useful. I was trying to figure this out the other day and this implementation is much more elegant. Thank you!</description>
		<content:encoded><![CDATA[<p>thanks for the snippet, very useful. I was trying to figure this out the other day and this implementation is much more elegant. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marvin Blase</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-309</link>
		<dc:creator>Marvin Blase</dc:creator>
		<pubDate>Sun, 14 Feb 2010 03:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-309</guid>
		<description>hey,
for sure - just ask for the version in an if-conditional. e.g.

if(_versionInfo == 10) {
   mc1.visible = true;
   mc2.visible = false;

   mc1.gotoAndPlay(1);
} else {
   mc2.visible = true;
   mc1.visible = false;

   mc2.gotoAndPlay(1);
}

don&#039;t forget the stop(); in the first frame of your different movieclips.</description>
		<content:encoded><![CDATA[<p>hey,<br />
for sure &#8211; just ask for the version in an if-conditional. e.g.</p>
<p>if(_versionInfo == 10) {<br />
   mc1.visible = true;<br />
   mc2.visible = false;</p>
<p>   mc1.gotoAndPlay(1);<br />
} else {<br />
   mc2.visible = true;<br />
   mc1.visible = false;</p>
<p>   mc2.gotoAndPlay(1);<br />
}</p>
<p>don&#8217;t forget the stop(); in the first frame of your different movieclips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravi j.</title>
		<link>http://www.beautifycode.com/snippet-check-flash-player-version/comment-page-1#comment-308</link>
		<dc:creator>ravi j.</dc:creator>
		<pubDate>Sun, 14 Feb 2010 02:12:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.beautifycode.com/?p=650#comment-308</guid>
		<description>hello, good snippet. but can you help me quick? i want to play different movieclips on different versions. i mean playing mc1 when version is 9 and mc2 when 10. 

thanks!!
ravi</description>
		<content:encoded><![CDATA[<p>hello, good snippet. but can you help me quick? i want to play different movieclips on different versions. i mean playing mc1 when version is 9 and mc2 when 10. </p>
<p>thanks!!<br />
ravi</p>
]]></content:encoded>
	</item>
</channel>
</rss>

