载入外部flv文件

      as3学习 2010-4-20 9:42:00

以前做过类似工作,好久不用又不记得了,在博客中记录下,希望以后就这个问题不用再查帮助了

 

var connection:NetConnection = new NetConnection();   // 提供NetStream的数据来源
connection.connect(null);

var _stream:NetStream=new NetStream(connection);  //  NetStream负责载入和播放flv文件
_stream.play("test.flv");
var client:Object=new Object();
_stream.client=client;

var _video:Video=new Video(600,450);    //Video对象负责显示视频
_video.attachNetStream(_stream);
addChild(_video);

在时间轴上加上以上代码,并在同目录下放一测试文件test.flv。

标签集:TAGS:
回复Comments() 点击Count()
喜欢就顶一下

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}