Hi, im tryin to load a video FLV into my swf using the following code -
vid_btn.onRelease = function () {
myVideo_nc = new Netconnection ();
myVideo_nc.connect(null);
newStream_ns = new NetStream(myVideo_nc);
videoHolder.build.flv(newStream_ns);
newStream_ns.play("build.flv);
};
where Video holder is my embedded video symbol and the button to play it is called vid_btn … its from a book and i still cant follow it !
thanks