// add an event listener to the video to listen for cuepoints
// in this case the videoclip instance name is 'vid' and the
// function to be triggered by the listener is 'vidstuff'
// if you change the instance name change the code accordingly
this.vid.addEventListener(MetadataEvent.CUE_POINT, vidstuff);
// function triggered by the listener when we hit a cuepoint
function vidstuff(event:MetadataEvent):void
{
// stuff the function does goes below here
// stuff the function does goes above here
}
// end function triggered by the listener when we hit a cuepoint