Flex Mobile applications are view based. And I\'m using Adobe Cirrus (im assuming its the same for any FMS netConnection) Does anyone know how to maintain a persistent netConnection between views in a
Since I have to get data from other re开发者_StackOverflow社区d5 application. is it possible using multiple netconnection in one mxml application? Yes it is possible yo use multiple netConnection.
I\'m developing an application and I want to make one single connection for video (netstream) and chat (sharedObject).
I have a NetConnection object: myNetConnection = new NetConnection(); myNetConnection.addEventListener(NetStatusEvent.NET_STATUS, statusHandler);
So I\'m trying to mute a streamed video. For now I\'m working with one in the same directory. 开发者_Python百科
I need to send complex type object (marked RemoteClass in Flex) via NetConnection to other clients. [RemoteClass]
I wrote an flash actionscript 3.0 movie that needs to use netconnection and netstream for streaming. When I test the movie through flash ide the movie connects alright.But when I insert the swf in ht
The ActionScript 3.0 Reference says the following about flash.net.NetConnection: The NetConnection class creates a two-way connection between a client and a server. The client can be a Flash Player o
Using flex 3, how do i set a timeout for a Net开发者_如何学CConnection? code sample: nc=new NetConnection();
In Flash, AS3, I am using NetConnection to connect to a RTMP server, then I use NetStream to play a video+audio stream.