bolo
06-02-2007, 05:07 PM
Hello
I have a class who extends NetStream, i would like override play function.
public class VideoSync extends NetStream
{
//PROPERTIES
private var _nc:NetConnection;
//CONSTRUCTOR
public function VideoSync()
{
_nc = new NetConnection();
_nc.connect(null);
super(_nc);
init();
}
public override function play(... arguments):void {
trace(arguments)
super.play(arguments);
}
}
when i tested my class the video don't play
Can you help me ?
Thanks
I have a class who extends NetStream, i would like override play function.
public class VideoSync extends NetStream
{
//PROPERTIES
private var _nc:NetConnection;
//CONSTRUCTOR
public function VideoSync()
{
_nc = new NetConnection();
_nc.connect(null);
super(_nc);
init();
}
public override function play(... arguments):void {
trace(arguments)
super.play(arguments);
}
}
when i tested my class the video don't play
Can you help me ?
Thanks