in case you want to follow my suggestion and simply use programmatical
ASCuepoints of hardcoded cuepopints, here same simple sdemo code that
works fine:

import fl.video.*;

var myFLV:FLVPlayback = new FLVPlayback();
myFLV.source = "test.flv";
myFLV.addASCuePoint({time:0.5, name:"cp1"});
myFLV.addASCuePoint({time:1.0, name:"cp2"});
myFLV.addEventListener(MetadataEvent.CUE_POINT,
function(e:MetadataEvent):void{
  trace("Cuepoint reached: "+e.info.name);
});
myFLV.x = myFLV.y = 0;
addChild(myFLV);
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to