cheers,
I am getting my feet wet with OOP and wrote this class but am not sure if it is right and if the constructor is written right. Appreciate your help…thx
public class PlayVideo{
var vid_arr:Array = new Array();
public static function PlayVideo()
{
var net_nc:NetConnection = new NetConnection();
net_nc.connect(null);
var stream_ns:NetStream = new NetStream(net_nc);
my_video.attach(stream_ns);
stream_ns.play(vid_arr);
}
}
var myMoive:PlayVideo = new PlayVideo();