0

我正在尝试READY捕捉FLV Video Player. 我不太确定这段代码发生了什么。FLV player由导入Adobe Flash,我需要在视频准备好播放时启动 readyHandler(函数将删除“视频正在加载”文本)。我video_oynattir完美地使用了对象。但是,这些代码会破坏动画......

video_oynattir.addEventListener(Event.READY, readyHandler);

function readyHandler(event:VideoEvent):void
{
    trace("hurray");
}

并产生此错误:

通过引用静态类型类 * 访问可能未定义的属性 READY

如果我注释掉代码段。它执行完美。

完整阶段代码如下:

import flash.events.MouseEvent;
import flash.external.ExternalInterface;
import flash.net.URLRequest;
import flash.net.navigateToURL;

var clickTAG:String = loaderInfo.parameters.clickTAG;
var displayType:String = loaderInfo.parameters.displayType;

video_oynattir.autoPlay = false;

if(displayType == "collapse") {

    gotoAndStop("kapali");

}else{

    openButton.visible = false;
    gotoAndStop("acik");

}

video_button.addEventListener(MouseEvent.CLICK, videodurdur);

function videodurdur(e:MouseEvent):void {

    if(video_oynattir.state == "playing") {

        video_oynattir.stop();

    }else{

        video_oynattir.play();

    }

}

video_oynattir.addEventListener(Event.READY, readyHandler);

function readyHandler(e:VideoEvent):void {

    trace("at");

}

//Accesss of possibly undefined property READY through a refferance with static type class

closeButton.addEventListener(MouseEvent.CLICK, closeRichMedia);

function closeRichMedia(e:MouseEvent):void {

    video_oynattir.stop();
    ExternalInterface.call("dopushunlock");
    gotoAndPlay(3);
    openButton.visible = true;

}

openButton.addEventListener(MouseEvent.CLICK, openRichMedia);

function openRichMedia(e:MouseEvent):void {

    ExternalInterface.call("dopushlock");
    gotoAndStop(2);
    openButton.visible = false;

}

clickButton.addEventListener(MouseEvent.CLICK, gotoLink);

function gotoLink(e:MouseEvent):void {

    navigateToURL(new URLRequest(clickTAG), "_blank");

}

stop();
4

1 回答 1

0

请尝试将 EventListener 监听的事件类型更改为“ VideoEvent ”:

video_oynattir.addEventListener(VideoEvent.READY, readyHandler);

确保导入“fl.video.VideoEvent”。

于 2014-05-07T13:10:00.360 回答