<?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 Use Flash Video (FLV) Cue Points</title>
	<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points</link>
	<description>Luck is the residue of good design.</description>
	<pubDate>Sun, 14 Mar 2010 06:28:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.2</generator>

	<item>
		<title>by: Nencho Nenchev</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426947</link>
		<pubDate>Fri, 20 Nov 2009 14:29:28 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426947</guid>
					<description>&amp;#60;cuepoints&amp;#62;
    &amp;#60;cuepoint&amp;#62;
        &amp;#60;cuename&amp;#62;name&amp;#60;/cuename&amp;#62;
        &amp;#60;cuetime&amp;#62;time&amp;#60;/cuetime&amp;#62;
        &amp;#60;subtitle&amp;#62;subtitle&amp;#60;/subtitle&amp;#62;
    &amp;#60;/cuepoint&amp;#62;
&amp;#60;/cuepoints&amp;#62;</description>
		<content:encoded><![CDATA[<p>&lt;cuepoints&gt;<br />
    &lt;cuepoint&gt;<br />
        &lt;cuename&gt;name&lt;/cuename&gt;<br />
        &lt;cuetime&gt;time&lt;/cuetime&gt;<br />
        &lt;subtitle&gt;subtitle&lt;/subtitle&gt;<br />
    &lt;/cuepoint&gt;<br />
&lt;/cuepoints&gt;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Nencho Nenchev</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426946</link>
		<pubDate>Fri, 20 Nov 2009 14:24:51 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426946</guid>
					<description>Hello again,

Sorry, I didn't make myself clear the first time - I'm using AS3 and XML structure as the following sample:


    
        name
        time
        subtitle
    
</description>
		<content:encoded><![CDATA[<p>Hello again,</p>
<p>Sorry, I didn&#8217;t make myself clear the first time - I&#8217;m using AS3 and XML structure as the following sample:</p>
<p>        name<br />
        time<br />
        subtitle
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Nencho Nenchev</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426930</link>
		<pubDate>Fri, 20 Nov 2009 11:59:28 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-426930</guid>
					<description>Hello,

As far as I understood this is about embedded cue points. Is there some example concerning loading external cue points from a XML file?

Thanks,
Nencho</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>As far as I understood this is about embedded cue points. Is there some example concerning loading external cue points from a XML file?</p>
<p>Thanks,<br />
Nencho
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Bradley</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-424443</link>
		<pubDate>Wed, 04 Nov 2009 11:25:00 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-424443</guid>
					<description>Thank you so much - this is the best explanation of cues and how to implement them I have found. Saved my life!</description>
		<content:encoded><![CDATA[<p>Thank you so much - this is the best explanation of cues and how to implement them I have found. Saved my life!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dean Sawyer</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-421706</link>
		<pubDate>Fri, 23 Oct 2009 13:20:51 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-421706</guid>
					<description>Hello David.

I am trying (unsuccessfully) to utilse cue points in my flv (my_video) to jump to places in my timeline. My flv's are placed within a movieclip if this is helpful? I've learnt alot from this website but i just don't know enough about coding to get it to work. I've done a trace of my flv and this is the information it came back with;

onCuePoint:
parameters =
web1: website1
type = event
time = 3.009
name = web1
---------
onCuePoint:
parameters =
web2: website2
type = event
time = 10.127
name = web2
---------
onCuePoint:
parameters =
web3: website3
type = event
time = 17.866
name = web3

I've tried to 'fudge' my way through this but don't understand enough about AS language?! I exported the flv with embedded cue points called web1, web2 &amp;#38; web3 and am trying to get these to jump to the main timeline (out of the mc) to their respective labels (web01, web02 &amp;#38; web03) Whilst I was embedding those cue points i also added event names (also web1, 2 &amp;#38; 3) and  values of website1,website2 &amp;#38; website3 -no idea why just thought they had to be filled?

 Just to reiterate i'm not using components and I am using the net stream class.

Help!

...please!

Here's my code so far;

ns.onCuePoint = function(evt:Object):Void {
  trace(evt.name);
  trace(evt.time);
  trace(evt.parameters);
}

 

var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object):Void {
// Put any code you like here
trace(&quot;web1: &quot; + eventObject.info.name);
trace(&quot;event: &quot; + eventObject.info.type);
if(eventObject.info.name==&quot;web1&quot;){
gotoAndStop(&quot;web01&quot;);
}
}
my_video.addEventListener(&quot;cuePoint&quot;, listenerObject);</description>
		<content:encoded><![CDATA[<p>Hello David.</p>
<p>I am trying (unsuccessfully) to utilse cue points in my flv (my_video) to jump to places in my timeline. My flv&#8217;s are placed within a movieclip if this is helpful? I&#8217;ve learnt alot from this website but i just don&#8217;t know enough about coding to get it to work. I&#8217;ve done a trace of my flv and this is the information it came back with;</p>
<p>onCuePoint:<br />
parameters =<br />
web1: website1<br />
type = event<br />
time = 3.009<br />
name = web1<br />
&#8212;&#8212;&#8212;<br />
onCuePoint:<br />
parameters =<br />
web2: website2<br />
type = event<br />
time = 10.127<br />
name = web2<br />
&#8212;&#8212;&#8212;<br />
onCuePoint:<br />
parameters =<br />
web3: website3<br />
type = event<br />
time = 17.866<br />
name = web3</p>
<p>I&#8217;ve tried to &#8216;fudge&#8217; my way through this but don&#8217;t understand enough about AS language?! I exported the flv with embedded cue points called web1, web2 &amp; web3 and am trying to get these to jump to the main timeline (out of the mc) to their respective labels (web01, web02 &amp; web03) Whilst I was embedding those cue points i also added event names (also web1, 2 &amp; 3) and  values of website1,website2 &amp; website3 -no idea why just thought they had to be filled?</p>
<p> Just to reiterate i&#8217;m not using components and I am using the net stream class.</p>
<p>Help!</p>
<p>&#8230;please!</p>
<p>Here&#8217;s my code so far;</p>
<p>ns.onCuePoint = function(evt:Object):Void {<br />
  trace(evt.name);<br />
  trace(evt.time);<br />
  trace(evt.parameters);<br />
}</p>
<p>var listenerObject:Object = new Object();<br />
listenerObject.cuePoint = function(eventObject:Object):Void {<br />
// Put any code you like here<br />
trace(&#8221;web1: &#8221; + eventObject.info.name);<br />
trace(&#8221;event: &#8221; + eventObject.info.type);<br />
if(eventObject.info.name==&#8221;web1&#8243;){<br />
gotoAndStop(&#8221;web01&#8243;);<br />
}<br />
}<br />
my_video.addEventListener(&#8221;cuePoint&#8221;, listenerObject);
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Gordon Campbell</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-413760</link>
		<pubDate>Sun, 20 Sep 2009 23:38:42 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-413760</guid>
					<description>Great blog entry David!

Lots of good follow up discussion with excellent feedback.

Thought I'd pose a problem that I cannot really find any info on, although I've seen this in action.

I'd like to, using a custom made seek/scrub bar, restrict the user's ability to scrub through the video to only a number of cuepoints. I'd also like to display the name of the cuepoint in the seekbar as a pop out label.

Food for thought...</description>
		<content:encoded><![CDATA[<p>Great blog entry David!</p>
<p>Lots of good follow up discussion with excellent feedback.</p>
<p>Thought I&#8217;d pose a problem that I cannot really find any info on, although I&#8217;ve seen this in action.</p>
<p>I&#8217;d like to, using a custom made seek/scrub bar, restrict the user&#8217;s ability to scrub through the video to only a number of cuepoints. I&#8217;d also like to display the name of the cuepoint in the seekbar as a pop out label.</p>
<p>Food for thought&#8230;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Ahmed Nuaman</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-399220</link>
		<pubDate>Fri, 19 Jun 2009 08:57:09 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-399220</guid>
					<description>I was looking at this tut yesterday trying to find out how to programme cue points in AS3. After a lot of research, I wrote a method myself: http://ahmednuaman.com/blog/2009/06/18/actionscript-3-cue-points/</description>
		<content:encoded><![CDATA[<p>I was looking at this tut yesterday trying to find out how to programme cue points in AS3. After a lot of research, I wrote a method myself: <a href='http://ahmednuaman.com/blog/2009/06/18/actionscript-3-cue-points/' rel='nofollow'>http://ahmednuaman.com/blog/2009/06/18/actionscript-3-cue-points/</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tom Lunzer</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-389863</link>
		<pubDate>Fri, 08 May 2009 02:17:04 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-389863</guid>
					<description>Hello 

I found a sample of how to do the second part, have a cue point control the
timeline.  Here is the link.

http://web.uvic.ca/akeller/pw406/ht_video.htm

But I haven't yet found a way (that works) to create a button that 
sends the playhead of the FLVPlayer to a specific Cue point.</description>
		<content:encoded><![CDATA[<p>Hello </p>
<p>I found a sample of how to do the second part, have a cue point control the<br />
timeline.  Here is the link.</p>
<p><a href='http://web.uvic.ca/akeller/pw406/ht_video.htm' rel='nofollow'>http://web.uvic.ca/akeller/pw406/ht_video.htm</a></p>
<p>But I haven&#8217;t yet found a way (that works) to create a button that<br />
sends the playhead of the FLVPlayer to a specific Cue point.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tom Lunzer</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-389522</link>
		<pubDate>Thu, 07 May 2009 00:35:46 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-389522</guid>
					<description>Hello

I have used your excellent tutorial to play captions using Cue points.

var listener:Object = new Object();
listener.cuePoint = function(evt:Object):Void {
  if (evt.info.parameters.text == &quot;\&quot;\&quot;&quot;) {
    tfCaptions.text = &quot;&quot;;
  } else {
    tfCaptions.text = evt.info.parameters.text;
  }
}
videoPlayer.addEventListener(&quot;cuePoint&quot;, listener);

I would like to use a button to tell the FLVPlayer component, to start
at a specific Cue point.  I am using Action Script 2.

I would also like to know how to use the Cue points to control the main timeline in the Flash movie.  For instance when the FLVPlayer component get's to &quot;Cue_point_1&quot; the main movie would go to the next frame or labeled frame.

Any help would be appreciated.</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>I have used your excellent tutorial to play captions using Cue points.</p>
<p>var listener:Object = new Object();<br />
listener.cuePoint = function(evt:Object):Void {<br />
  if (evt.info.parameters.text == &#8220;\&#8221;\&#8221;") {<br />
    tfCaptions.text = &#8220;&#8221;;<br />
  } else {<br />
    tfCaptions.text = evt.info.parameters.text;<br />
  }<br />
}<br />
videoPlayer.addEventListener(&#8221;cuePoint&#8221;, listener);</p>
<p>I would like to use a button to tell the FLVPlayer component, to start<br />
at a specific Cue point.  I am using Action Script 2.</p>
<p>I would also like to know how to use the Cue points to control the main timeline in the Flash movie.  For instance when the FLVPlayer component get&#8217;s to &#8220;Cue_point_1&#8243; the main movie would go to the next frame or labeled frame.</p>
<p>Any help would be appreciated.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dave J</title>
		<link>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-322444</link>
		<pubDate>Thu, 18 Dec 2008 03:53:40 +0000</pubDate>
		<guid>http://www.quip.net/blog/2007/flash/how-to-use-flash-video-cue-points#comment-322444</guid>
					<description>I'm working on my website, and I have a great idea but I'm not sure if I can implement it. Before I put in the time creating my flv movie. Is it possible to load a flv file, load the entire thing with cuepoints and have 9 clickable buttons. When you click on one of the buttons the flv plays from one cuepoint to another cue then pauses dependent on which button was pushed of course? Then when the user clicks on any other button, the flv file unpauses plays til the next cue point then jumps to a new cuepoint dependent on which button was pushed? If this is possible and someone could point me in the right direction it'd be much appreciated. Thank you,</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on my website, and I have a great idea but I&#8217;m not sure if I can implement it. Before I put in the time creating my flv movie. Is it possible to load a flv file, load the entire thing with cuepoints and have 9 clickable buttons. When you click on one of the buttons the flv plays from one cuepoint to another cue then pauses dependent on which button was pushed of course? Then when the user clicks on any other button, the flv file unpauses plays til the next cue point then jumps to a new cuepoint dependent on which button was pushed? If this is possible and someone could point me in the right direction it&#8217;d be much appreciated. Thank you,
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
