var video_nc:NetConnection = new NetConnection();
video_nc.connect(“rtmp://localhost/live/”);
var video_ns:NetStream = new NetStream(video_nc);
video_ns.setBufferTime(0);
video_ns.play(“test”);
videoarea.attachVideo(video_ns);
sync_btn.onRelease = function() {
video_nc.call(“sendDataEvent”,null,inputfield_txt.text);
};
I have troubles converting it to AS3. do any1 know of any tutorials which could help [COLOR=Red]must use video (actionscript-controlled), rtmp from Flash Media Live Encoders and cannot use get.camera()[/COLOR]