Topic: Possible to play external .mov file in flash movie? (Page 1 of 1) |
|
|---|---|
|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 05-07-2008 00:21
I have a bunch of different .mov files at the same level as my flash movie. I would like to be able to play these files from some area within the flash movie, with some buttons to move between the videos. |
|
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 05-07-2008 13:07
Turns out that yes it is possible. code: var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
myVideo.attachNetStream(ns);
var listener :Object = new Object();
listener.onMetaData = function (md:Object):void{};
ns.client = listener;
ns.play("Sample.mov");
|