How to find a cuepoint in a f4v video (it worked with a flv video) ?
I used the following AS3.0 code in my project, linking a video (.flv) and images :
When I click on the text Titre0 I want the video go to the cuepoint "1".
Titre0.addEventListener(MouseEvent.CLICK, fl_ClickToSeekToCuePoint_0);
function fl_ClickToSeekToCuePoint_0(event:MouseEvent):void
{
var cuePointInstance:Object = my_FLVPlybk.findCuePoint("1");
my_FLVPlybk.seek(cuePointInstance.time);
this.gotoAndStop(1);
diapo.value = 1;
}
It works with a flv video, not with a f4v.
