<?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: Detecting the end of FLV stream in Actionscript 3</title>
	<atom:link href="http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 07:31:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: onepopcorn</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-1675</link>
		<dc:creator>onepopcorn</dc:creator>
		<pubDate>Wed, 02 Mar 2011 14:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-1675</guid>
		<description>Hi everybody!

In the NetStream class you have special kind of event called onPlayStatus. In fact it&#039;s a property of the NetStream.client object that works as a callback function. It returns an object with some properties like &quot;NetStream.Play.Complete&quot; what its launched when the video is complete. 

You can find more info about this here:

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStream.html#event:onPlayStatus


Hope to solve your problem.</description>
		<content:encoded><![CDATA[<p>Hi everybody!</p>
<p>In the NetStream class you have special kind of event called onPlayStatus. In fact it&#8217;s a property of the NetStream.client object that works as a callback function. It returns an object with some properties like &#8220;NetStream.Play.Complete&#8221; what its launched when the video is complete. </p>
<p>You can find more info about this here:</p>
<p><a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStream.html#event:onPlayStatus" rel="nofollow">http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/NetStream.html#event:onPlayStatus</a></p>
<p>Hope to solve your problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-106</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 21 Jan 2009 18:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-106</guid>
		<description>Yea, having a real event for the end of the video would be unthinkable!
I&#039;ve found that in Flash 10, playing back mp4, sometimes the EMPTY event isn&#039;t ever thrown at the end - but sometimes it is. Time for more hacks!</description>
		<content:encoded><![CDATA[<p>Yea, having a real event for the end of the video would be unthinkable!<br />
I&#8217;ve found that in Flash 10, playing back mp4, sometimes the EMPTY event isn&#8217;t ever thrown at the end &#8211; but sometimes it is. Time for more hacks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-105</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 21 Jan 2009 17:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-105</guid>
		<description>In NetStream.Play.Stop, check if NetStream.time &gt;= duration. You can get the video duration from onMetaHandler.</description>
		<content:encoded><![CDATA[<p>In NetStream.Play.Stop, check if NetStream.time &gt;= duration. You can get the video duration from onMetaHandler.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-104</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Tue, 07 Oct 2008 21:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-104</guid>
		<description>Unfortunately it didn&#039;t work for me, it was thrown in the middle of the stream.
There are also so many posts all over the place about it.
In my simple application I ended up using onMetaHandler and get the duration.

I would appreciate if you could explain this a little more though, I&#039;m learning.</description>
		<content:encoded><![CDATA[<p>Unfortunately it didn&#8217;t work for me, it was thrown in the middle of the stream.<br />
There are also so many posts all over the place about it.<br />
In my simple application I ended up using onMetaHandler and get the duration.</p>
<p>I would appreciate if you could explain this a little more though, I&#8217;m learning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panel</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-103</link>
		<dc:creator>Panel</dc:creator>
		<pubDate>Tue, 07 Oct 2008 12:15:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-103</guid>
		<description>use
NetStream.Play.Stop</description>
		<content:encoded><![CDATA[<p>use<br />
NetStream.Play.Stop</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Detecting the end of FLV stream in Actionscript 3, part 2</title>
		<link>http://codingrecipes.com/detecting-the-end-of-flv-stream-in-actionscript-3/comment-page-1#comment-102</link>
		<dc:creator>Detecting the end of FLV stream in Actionscript 3, part 2</dc:creator>
		<pubDate>Wed, 24 Sep 2008 20:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=373#comment-102</guid>
		<description>[...] Detecting the end of FLV stream in Actionscript 3, part 2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Detecting the end of FLV stream in Actionscript 3, part 2 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

