Thx boss u are great. Its working
But I have some more questions
Can we mention some size (height and width), position(x and y) and control (play, pause, streaming line and volume?)
for the video height and widht i try this, its working but how to get video position and control?
package {
import flash.display.SimpleButton;
import flash.events.MouseEvent;
import flash.media.Video;
import flash.net.NetConnection;
import flash.net.NetStream;
public class clickbutton extends SimpleButton {
public function clickbutton() {
this.addEventListener(MouseEvent.CLICK, clickF);
}
private function clickF(e:MouseEvent):void{
var nc:NetConnection=new NetConnection();
nc.connect(null);
var ns:NetStream=new NetStream(nc);
var video:Video=new Video(320, 200);
this.parent.addChild(video);
video.attachNetStream(ns);
ns.play("video_test.flv");
}
}
}
You can see, now its look like this
and also I got output error
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onMetaData. error=ReferenceError: Error #1069: Property onMetaData not found on flash.net.NetStream and there is no default value.
at clickbutton/clickF()