带有视频的多个MovieClip中出现故障

时间:2019-07-20 12:37:14

标签: actionscript-3 flash

当我使用嵌入的影片剪辑在时间线中输入视频时,我为学校的作业提出了申请,并且在按下用户界面的第二个按钮(video2)时遇到故障,我该怎么办解决吗?

代码:

时间轴上的第一帧

import flash.events.MouseEvent;
stop();

video1.addEventListener(MouseEvent.CLICK, to_video1);
video2.addEventListener(MouseEvent.CLICK, to_video2);

function to_video1(event:MouseEvent):void{
         gotoAndStop("v1");
}//v1 the video 1

function to_video2(event:MouseEvent):void{
         gotoAndStop("v2");
}//v2 the video 2

function stopPlay1(e:Event){
vid2.stop();
}

function stopPlay2(e:Event)}
vid2.stop();
}

时间轴上的第二帧

import flash.events.Event;
stop();

vid1.addEventListener(Event.REMOVED_FROM_STAGE, stopPlay1);

时间轴上的第三帧

import flash.events.Event;
stop();

vid2.addEventListener(Event.REMOVED_FROM_STAGE, stopPlay2);

1 个答案:

答案 0 :(得分:1)

您的体验到底是什么“小故障”。如果是,则在编译器或输出窗口中也有任何错误,请发布。