Advertisement
Advertisement
| 07.18.2008 at 01:53PM PDT, ID: 23578228 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: |
var livestream:NetConnection = new NetConnection();
livestream.objectEncoding = ObjectEncoding.AMF0;
livestream.client = this;
livestream.addEventListener( NetStatusEvent.NET_STATUS , netStatus );
livestream.connect("rtmp://domain.com/oflaDemo");
var hostStream:NetStream = new NetStream(livestream);
hostStream.publish("lecture", "live");
|