уфф. поиск неа?

Код AS3:
[Embed(source = "video.flv",mimeType = "application/octet-stream")]
var VideoByte:Class;
var nc:NetConnection = new NetConnection();
var ns:NetStream = new NetStream(nc);
var myVideo:Video = new Video(width,height);
nc.connect(null);
myVideo.attachNetStream(ns);
ns.play(null);
ns.appendBytes(new VideoByte());
addChild(myVideo);