
<?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>Commenti a: Come individuare che uno streaming video FLV è stato completato</title>
	<atom:link href="http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html</link>
	<description>Posizionamento siti web, realizzazione siti Internet, Web design CSS, tutorial Photoshop</description>
	<lastBuildDate>Wed, 28 Dec 2011 23:21:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Di: Davide</title>
		<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-11471</link>
		<dc:creator>Davide</dc:creator>
		<pubDate>Fri, 17 Sep 2010 08:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.w3facile.com/index.php/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-11471</guid>
		<description>Purtroppo ho notato che stranamente con explorer non va, ok per gli altri browser.</description>
		<content:encoded><![CDATA[<p>Purtroppo ho notato che stranamente con explorer non va, ok per gli altri browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: marco</title>
		<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5705</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Thu, 21 May 2009 14:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.w3facile.com/index.php/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5705</guid>
		<description>ciao grazie per la risposta....gia&#039; fatto pero&#039; poi non esegue correttamente il codice. Ovvio che e&#039; il delete this.onStatus una volta disattivato non permette la ripetizione. Se provi a testare il codice vedrai che non funziona correttamente.</description>
		<content:encoded><![CDATA[<p>ciao grazie per la risposta&#8230;.gia&#8217; fatto pero&#8217; poi non esegue correttamente il codice. Ovvio che e&#8217; il delete this.onStatus una volta disattivato non permette la ripetizione. Se provi a testare il codice vedrai che non funziona correttamente.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: R.A.M.Page</title>
		<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5689</link>
		<dc:creator>R.A.M.Page</dc:creator>
		<pubDate>Wed, 20 May 2009 09:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.w3facile.com/index.php/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5689</guid>
		<description>prova a commentare
delete this.onStatus;</description>
		<content:encoded><![CDATA[<p>prova a commentare<br />
delete this.onStatus;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: marco</title>
		<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5687</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Wed, 20 May 2009 09:19:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.w3facile.com/index.php/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-5687</guid>
		<description>Ciao, sito interessante anche questo articolo. Stavo utilizzando questo codice peró c&#039;é un problema. L&#039;intercettazione della fine dell&#039; FLV avviene correttamente, si puo&#039; associare anche un evento, il problema è che la volta successiva che termina il video non esegue nuovamente l&#039;evento associato. Per spiegarmi meglio: 

//funzione che viene richiamata quando NetStream riceve i metadata del video
ns.onMetaData = function(evt:Object):Void {
duration = evt.duration;
};
//viene richiamata ogni volta che NetStream cambia status
ns.onStatus = function(evt:Object):Void {
if (this.time &gt; 0 &amp;&amp; this.time &gt;= duration) {
trace(&quot;Video completato&quot;)
playpausebutton.gotoAndPlay(&quot;playautomatico&quot;);
ns.seek(0);
ns.pause();
delete this.onStatus;
}
}

la prima volta funziona correttaemnte ....la seconda volta no...infatti non mi da neanche il trace. Come puó esser risolto?</description>
		<content:encoded><![CDATA[<p>Ciao, sito interessante anche questo articolo. Stavo utilizzando questo codice peró c&#8217;é un problema. L&#8217;intercettazione della fine dell&#8217; FLV avviene correttamente, si puo&#8217; associare anche un evento, il problema è che la volta successiva che termina il video non esegue nuovamente l&#8217;evento associato. Per spiegarmi meglio: </p>
<p>//funzione che viene richiamata quando NetStream riceve i metadata del video<br />
ns.onMetaData = function(evt:Object):Void {<br />
duration = evt.duration;<br />
};<br />
//viene richiamata ogni volta che NetStream cambia status<br />
ns.onStatus = function(evt:Object):Void {<br />
if (this.time &gt; 0 &amp;&amp; this.time &gt;= duration) {<br />
trace(&#8220;Video completato&#8221;)<br />
playpausebutton.gotoAndPlay(&#8220;playautomatico&#8221;);<br />
ns.seek(0);<br />
ns.pause();<br />
delete this.onStatus;<br />
}<br />
}</p>
<p>la prima volta funziona correttaemnte &#8230;.la seconda volta no&#8230;infatti non mi da neanche il trace. Come puó esser risolto?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Di: Video FLV e AS3, la classe VideoEvent per intercettare gli eventi &#124; W3 facile - Risorse, tutorial, notizie sul Web per lo sviluppatore ed il webdesigner</title>
		<link>http://www.w3facile.com/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-533</link>
		<dc:creator>Video FLV e AS3, la classe VideoEvent per intercettare gli eventi &#124; W3 facile - Risorse, tutorial, notizie sul Web per lo sviluppatore ed il webdesigner</dc:creator>
		<pubDate>Sat, 19 Apr 2008 14:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.w3facile.com/index.php/flash-e-actionscript/come-individuare-che-uno-streaming-video-flv-e-stato-completato.html#comment-533</guid>
		<description>[...] vecchio post Come individuare che uno streaming video FLV è stato completato avevamo affrontato il problema degli eventi di stop dei filmati Flash 8, legato all&#8217;embedding [...]</description>
		<content:encoded><![CDATA[<p>[...] vecchio post Come individuare che uno streaming video FLV è stato completato avevamo affrontato il problema degli eventi di stop dei filmati Flash 8, legato all&#8217;embedding [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 2/11 queries in 0.006 seconds using disk

Served from: www.w3facile.com @ 2012-02-12 16:55:13 -->
