<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: How to Fast Forward and Rewind Video (FLV) Content</title>
	<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video</link>
	<description>Luck is the residue of good design.</description>
	<pubDate>Tue, 06 Jan 2009 13:20:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>by: Zack B</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-252760</link>
		<pubDate>Fri, 22 Aug 2008 16:13:42 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-252760</guid>
					<description>Hey dude, great article and great blog! Keep on coding brother!</description>
		<content:encoded><![CDATA[<p>Hey dude, great article and great blog! Keep on coding brother!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: John David Hutton</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-207557</link>
		<pubDate>Sat, 21 Jun 2008 20:34:24 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-207557</guid>
					<description>Hi David, I was reading through your excellent scripting article notes but wasn't sure if the reverse section is what I need or not. I currently have a flvplayback component in my flash AS 2.0 file I'm working with. I've made 3D renders so that we look at a layout and start in on each section when a button is pressed. All of that works great. The problem I'm having is that I'd like the same video to be reversed each time they hit a new link so we're taken back to the home position first before proceeding to the next section they clicked on. I'm not finding an easy way to reverse in the flvplayback component and wondered if you could comment on that?</description>
		<content:encoded><![CDATA[<p>Hi David, I was reading through your excellent scripting article notes but wasn&#8217;t sure if the reverse section is what I need or not. I currently have a flvplayback component in my flash AS 2.0 file I&#8217;m working with. I&#8217;ve made 3D renders so that we look at a layout and start in on each section when a button is pressed. All of that works great. The problem I&#8217;m having is that I&#8217;d like the same video to be reversed each time they hit a new link so we&#8217;re taken back to the home position first before proceeding to the next section they clicked on. I&#8217;m not finding an easy way to reverse in the flvplayback component and wondered if you could comment on that?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-199521</link>
		<pubDate>Wed, 11 Jun 2008 18:50:22 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-199521</guid>
					<description>Have you tried this with h.264 video content?  The ff and rewind buttons don't seem to work just right. Do you think it has to do with the metadata within the MPEG-4 file? I'd really like to get your ff and rewind method to work with MPEG-4 H.264 videos.  Thanks.</description>
		<content:encoded><![CDATA[<p>Have you tried this with h.264 video content?  The ff and rewind buttons don&#8217;t seem to work just right. Do you think it has to do with the metadata within the MPEG-4 file? I&#8217;d really like to get your ff and rewind method to work with MPEG-4 H.264 videos.  Thanks.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-186770</link>
		<pubDate>Wed, 21 May 2008 18:52:43 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-186770</guid>
					<description>Dan,

If that's your AS2 code, then you'll have to change that &lt;code&gt;bufferClip.visible&lt;/code&gt; reference to &lt;code&gt;bufferClip._visible&lt;/code&gt; (note the underscore).  Many AS2 &lt;code&gt;MovieClip&lt;/code&gt; properties begin with an underscore for historical reasons.

It's always a good idea to doing some troubleshooting, while you're at it.  The &lt;code&gt;trace()&lt;/code&gt; function sends message to the Output panel for you, so you could do something like this:

&lt;pre&gt;&lt;code&gt;ns.onStatus = function(info) {
  if (info.code == &amp;#34;NetStream.Buffer.Full&amp;#34;) {
  bufferClip.visible = false;
  trace(&amp;#34;buffer is is full&amp;#34;);
}
// when the buffer is empty show buffer text
  if (info.code == &amp;#34;NetStream.Buffer.Empty&amp;#34;) {
  bufferClip.visible = true;
  trace(&amp;#34;buffer is empty&amp;#34;);
}
// etc.&lt;/code&gt;&lt;/pre&gt;

... to ensure that the event is firing at all, even if &lt;code&gt;bufferClip&lt;/code&gt; isn't doing what it should.</description>
		<content:encoded><![CDATA[<p>Dan,</p>
<p>If that&#8217;s your AS2 code, then you&#8217;ll have to change that <code>bufferClip.visible</code> reference to <code>bufferClip._visible</code> (note the underscore).  Many AS2 <code>MovieClip</code> properties begin with an underscore for historical reasons.</p>
<p>It&#8217;s always a good idea to doing some troubleshooting, while you&#8217;re at it.  The <code>trace()</code> function sends message to the Output panel for you, so you could do something like this:</p>
<pre><code>ns.onStatus = function(info) {
  if (info.code == &quot;NetStream.Buffer.Full&quot;) {
  bufferClip.visible = false;
  trace(&quot;buffer is is full&quot;);
}
// when the buffer is empty show buffer text
  if (info.code == &quot;NetStream.Buffer.Empty&quot;) {
  bufferClip.visible = true;
  trace(&quot;buffer is empty&quot;);
}
// etc.</code></pre>
<p>&#8230; to ensure that the event is firing at all, even if <code>bufferClip</code> isn&#8217;t doing what it should.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dan</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-186736</link>
		<pubDate>Wed, 21 May 2008 17:20:37 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-186736</guid>
					<description>Hi David, 

While I have found this very helpful indeed, I am also building a player using AS3. I've gotten pretty far including buttons and a scrubber using this and other help sites, but seem to have hit a wall when it comes to buffering. The buffer itself works fine but the movieClip I have to show the buffering status doesn't remove itself for whatever reason. 

The code I have for AS2 is:

ns.bufferTime = 30;

ns.onStatus = function(info) {
	if(info.code == &quot;NetStream.Buffer.Full&quot;) {
		bufferClip.visible = false;
	}
	// when the buffer is empty show buffer text
	if(info.code == &quot;NetStream.Buffer.Empty&quot;) {
		bufferClip.visible = true;
	}
	// when the video has finished return to beginning
	if(info.code == &quot;NetStream.Play.Stop&quot;) {
		ns.seek(0);	
	}
	
}

Like I said I'm trying to convert this to AS3, so any help would be great as I am beginning to lose my hair...!</description>
		<content:encoded><![CDATA[<p>Hi David, </p>
<p>While I have found this very helpful indeed, I am also building a player using AS3. I&#8217;ve gotten pretty far including buttons and a scrubber using this and other help sites, but seem to have hit a wall when it comes to buffering. The buffer itself works fine but the movieClip I have to show the buffering status doesn&#8217;t remove itself for whatever reason. </p>
<p>The code I have for AS2 is:</p>
<p>ns.bufferTime = 30;</p>
<p>ns.onStatus = function(info) {<br />
	if(info.code == &#8220;NetStream.Buffer.Full&#8221;) {<br />
		bufferClip.visible = false;<br />
	}<br />
	// when the buffer is empty show buffer text<br />
	if(info.code == &#8220;NetStream.Buffer.Empty&#8221;) {<br />
		bufferClip.visible = true;<br />
	}<br />
	// when the video has finished return to beginning<br />
	if(info.code == &#8220;NetStream.Play.Stop&#8221;) {<br />
		ns.seek(0);<br />
	}</p>
<p>}</p>
<p>Like I said I&#8217;m trying to convert this to AS3, so any help would be great as I am beginning to lose my hair&#8230;!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: David Stiller</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-169935</link>
		<pubDate>Fri, 25 Apr 2008 18:43:36 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-169935</guid>
					<description>&lt;strong&gt;To Nimisha ...&lt;/strong&gt;

Your question makes a good topic for a tutorial of its own, so I've added it to my list.  Mailing you an answer personally doesn't help other visitors to this blog.  ;)

&lt;strong&gt;To Valdemar ...&lt;/strong&gt;

Thanks!  Glad to hear that.</description>
		<content:encoded><![CDATA[<p><strong>To Nimisha &#8230;</strong></p>
<p>Your question makes a good topic for a tutorial of its own, so I&#8217;ve added it to my list.  Mailing you an answer personally doesn&#8217;t help other visitors to this blog.  <img src='http://www.quip.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>To Valdemar &#8230;</strong></p>
<p>Thanks!  Glad to hear that.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Valdemar</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-168682</link>
		<pubDate>Wed, 23 Apr 2008 15:14:15 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-168682</guid>
					<description>It was very usefull!!!
Many thanks for the code, David.</description>
		<content:encoded><![CDATA[<p>It was very usefull!!!<br />
Many thanks for the code, David.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Nimisha</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-158924</link>
		<pubDate>Mon, 07 Apr 2008 17:24:02 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-158924</guid>
					<description>How to Fast Forward and Rewind sound using actionscript3 for Adobe CS3?
Mail back to me please, thank you</description>
		<content:encoded><![CDATA[<p>How to Fast Forward and Rewind sound using actionscript3 for Adobe CS3?<br />
Mail back to me please, thank you
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Claudia</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-116111</link>
		<pubDate>Sat, 29 Dec 2007 22:52:38 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-116111</guid>
					<description>Hi again!
I made it!!
The proble was the video
I do not know what is the difference but the same code works for one and not for the other.
Any one have notice that?</description>
		<content:encoded><![CDATA[<p>Hi again!<br />
I made it!!<br />
The proble was the video<br />
I do not know what is the difference but the same code works for one and not for the other.<br />
Any one have notice that?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Claudia</title>
		<link>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-115949</link>
		<pubDate>Sat, 29 Dec 2007 11:34:52 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/actionscript-20/how-to-fast-forward-rewind-video#comment-115949</guid>
					<description>Hi, thanks to explain in so much detail
I think this is what I ' m looking for.
But I can't make it work : (
I do not know what is wrong
Can you help me by simple upload your fla example?

This is what I trying to do:
http://www.whalefootage.org/start.php?lang=en
Look at the botton menu.

But for the moment I only want go back and forward as you explain.
Sorry for my English!
Thank's from Uruguay
Have a Happy new Year!</description>
		<content:encoded><![CDATA[<p>Hi, thanks to explain in so much detail<br />
I think this is what I &#8216; m looking for.<br />
But I can&#8217;t make it work : (<br />
I do not know what is wrong<br />
Can you help me by simple upload your fla example?</p>
<p>This is what I trying to do:<br />
<a href='http://www.whalefootage.org/start.php?lang=en' rel='nofollow'>http://www.whalefootage.org/start.php?lang=en</a><br />
Look at the botton menu.</p>
<p>But for the moment I only want go back and forward as you explain.<br />
Sorry for my English!<br />
Thank&#8217;s from Uruguay<br />
Have a Happy new Year!
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
