Flex NetConnection error: Property onDirtyList not found on flash.net.NetConnection
- by David Wolever
I'm having some trouble with NetConnection. The following code makes a connection without issue…
var n:NetConnection = new NetConnection();
n.objectEncoding = ObjectEncoding.AMF0;
n.addEventListener(NetStatusEvent.NET_STATUS, function(...args):void {
trace("HERE");
});
n.connect("rtmp://...host...", ...args);
But as…