您好,我正在做一个演示文稿,上面有一些视频。为了观看视频,我制作了一些按钮,并找到了将外部视频带到舞台上的代码。问题是,当我转到下一帧时,最后一个视频会留在那里。这是我必须在舞台上设置视频的代码:
miguel_btn.addEventListener(MouseEvent.CLICK,video_miguel);
function video_miguel(event:MouseEvent):void
{
var conexion10:NetConnection= new NetConnection();
conexion10.connect(null);
var display10:NetStream= new NetStream(conexion10);
display10.play("Miguel_1.flv");
var video10:Video=new Video();
video10.attachNetStream(display10);
video10.x= 150;
video10.y= 250;
stage.addChild(video10);
display10.addEventListener(AsyncErrorEvent.ASYNC_ERROR,nomostrar10);
function nomostrar10(event:AsyncErrorEvent):void
{
}
}
我试图删除它们:
if (event.keyCode == Keyboard.RIGHT)
{
nextFrame();
video10.clear();
}
但我是 as3 的新手,它不起作用。谢谢。