Listen for my Flash event in Javascript

后端 未结 3 681
醉话见心
醉话见心 2021-01-20 09:32

I\'m trying to build a basic video player with a playlist using the OVP Player. So far I have figured out how to feed in the new video source using ExternalInterface, but I

3条回答
  •  离开以前
    2021-01-20 10:15

    In the Model.as file find add this line in with all the other imports (at the start of the file):

    import flash.external.*;
    

    Then in the end event, add this line:

    ExternalInterface.call("stopedPlaying");
    

    So that an event would look like this:

            public function endOfItem():void {
                sendEvent(EVENT_END_OF_ITEM);
                // inform JavaScript that the FLV has stopped playing
                ExternalInterface.call("stoppedPlaying");
            }
    

    Then in your the HTML document, add this between SCRIPT tags:

    function stoppedPlaying()
    {
        // do something when the FLV starts playing
    };
    

提交回复
热议问题