|
-
going to a cuepoint from a list
Hello world,
I'm trying to goto a cue point that was added at runtime in actionscript.
I'm using the seekToNavCuePoint() command but no luck.
does this command only work when the cuepoints are added when encoded?
What we have is a vidoe of a speaker. Off cam is a power point slide show. We have the time codes for each slide. but we want to be able to click a slide name from the list and have it go to that cue point in the video
some of the code:
// Create listener object.
var listListener:Object = new Object();
listListener.change = function(evt_obj:Object) {
//
//trace(evt_obj.target.value);
//trace(evt_obj.target.selectedItem.data);
cuepointname = evt_obj.target.selectedItem.data;
trace("cuepoint "+ cuepointname);
// GO TO FLV Cue Point
//_root.my_flvPb.seekToNavCuePoint(evt_obj.target.se lectedItem.data);
_root.my_flvPb.seekToNavCuePoint(cuepointname);
//this.my_flvPb.seekToNextNavCuePoint();
// imgload.contentPath = "images/" + + ".jpg";
}
// Add listener.
mylist.addEventListener("change", listListener);
stop();
thanks
Talmore
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|