I am trying to create a basic video player with a playlist using OVP Player. So far I have figured out how to feed a new video source using ExternalInterface, but I cannot figure out how to listen to the Flash event "EVENT_END_OF_ITEM".
How to listen for Flash events in Javascript (and therefore jQuery)?
There are many events defined in OVP, but I donโt know how to listen to them. For example, here is EVENT_END_OF_ITEM:
public function endOfItem():void {
sendEvent(EVENT_END_OF_ITEM);
}
OVP documentation is missing and their support forum is almost as bad.
source
share