AS3.0用代码控制播放一段视频

来源:互联网 发布:呼和浩特乾宇网络 编辑:程序博客网 时间:2024/05/29 16:28
import flash.net.*;import flash.media.Video;var nc:NetConnection=new NetConnection();nc.connect(null);var ns:NetStream = new NetStream(nc);ns.client = this;var vid:Video=new Video();vid.attachNetStream(ns);vid.x = box.x;vid.y = box.y;vid.width = box.width - 20;vid.height = box.height - 20;addChild(vid);ns.play("广告.flv");