Ok, en la ayuda tienes que ir a diccionario de componentes, FLVPlayback. Allí explica como agregar Cuepoints directamente en el inspector de componentes, luego tiene código de ejemplo de como navegar a un cuePoint (usas el nombre que le has dado) También tienes métodos para navegar al anterior o siguiente cuePoint (si existiera) Copio el ejemplo
Código ActionScript :
import mx.video.*;
var listenerObject:Object = new Object();
listenerObject.ready = function(eventObject:Object) {
my_FLVPlybk.seekToNavCuePoint("point2");
}
my_FLVPlybk.addEventListener("ready", listenerObject);
var listenerObject:Object = new Object();
listenerObject.cuePoint = function(eventObject:Object) {
trace(eventObject.info.time);
if(eventObject.info.time == 7.748)
my_FLVPlybk.seekToPrevNavCuePoint(eventObject.info.time - .005);
else
my_FLVPlybk.seekToNextNavCuePoint(eventObject.info.time + 10);
}
my_FLVPlybk.addEventListener("cuePoint", listenerObject);
my_FLVPlybk.contentPath = "http://helpexamples.com/flash/video/cuepoints.flv";
Jorge