Tagged Questions
The netconnection tag has no wiki summary.
6
votes
2answers
249 views
AS3, NetConnection/NetStream: Is there a smart way to split source url?
The problem
I have to replace the mx:VideoDisplay component in an existing Flex project with a custom made component.
To achieve this, I have to conform to its current Interface, so my component ...
2
votes
2answers
92 views
In Android To Check the Internet Connection is Available for Frequently?
Hai my Application is to Save(to Server) the Data through NetConnection.If net is not Available i saved Locallaly,and then when net is available again send to the server.My problem is to check ...
1
vote
1answer
47 views
Java method call in flash file
I have sample code for NetConnection in as3 :
var good:Boolean;
nc = new NetConnection();
nc.connect("rtmp://ip:port/MyDemo/");
nc.addEventListener(NetStatusEvent.NET_STATUS,getStream);
...
1
vote
1answer
36 views
What could be the reason Flash doesn't respond on local Zend_amf services?
I've (actually my classmate) got a problem with loading local ZEND_AMF services on Windows 7 (XAMPP). I can't find any answer on Google or on Stackoverflow. I found one similar topic without any ...
1
vote
3answers
89 views
Trying to connect to AMFPHP - NetConnection.connect() returns TypeError: Error #1009
UPDATE: Now I've moved the AMFConnection var declaration to outside the functions in Main, and commented out some trace() commands, and now it gives new errors:
Error #2044: Unhandled ...
1
vote
4answers
450 views
How can I share the same NetConnection Object between two views?
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 ...
1
vote
2answers
160 views
How do i make a single connection to handle video, audio and chat in Flex
I'm developing an application and i want to make one single connection for video(netstream) and chat(sharedObject).
I have one connection for each but i have limited connection available in the server ...
1
vote
1answer
470 views
Flash NetConnection Problem
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 ...
1
vote
0answers
212 views
Server-side actionscript: 'Method not found' error on NetConnection
The 'client' property of NetConnection instances seems to behave differently on the server side.
Say I have FMS apps A and B. Now I want to connect from B to A using NetConnection like this:
var ...
1
vote
0answers
501 views
C# fluorine Client only working when Charles Web proxy is open
Hi:
I created a console application that it should run every hour in order to push updates to a different server using FluorineFx for C# client (NetConnection). It works great, but only when I have ...
0
votes
0answers
11 views
(actionscript) Streaming m3u8 or mpeg-ts with NetConnection
I'm trying to play this stream with netconnection:
http://iphone-streaming.ustream.tv/uhls/8695144/streams/live/iphone/playlist.m3u8
The stream contains links to .ts files, so If flash can either ...
0
votes
0answers
47 views
What's this encoding type?
Here are two numbers and their corresponding encoding type:
17243 => @ÐÖÀ
15630 => @·
This is extracted from a Flash NetConnection request. It looks like unicode, but I couldn't find any ...
0
votes
1answer
38 views
ActionScript3 - how to handle NetConnection.Connection.Failed
I have a video streaming app, and it uses Flash AS3. It keeps getting a NetStatusEvent of "NetConnection.Connection.Failed", when i try to use it in my Windows Testing environment. I need to make it ...
0
votes
0answers
14 views
How to list all the connected neighbors in NetConnection Flash Builder AS3
I've created a NetConnection in Flash Builder and creating a Chat application. Every thing is fine but I want to list all the connected Members (Neighbors) in the panel by the "User Name". I've ...
0
votes
1answer
55 views
How to Synchronize Red5 NetConnection Calls
I am developing a online game using red5 and flex. using RTMP connection. I used only netConnection.call. my issue is the red5 calls are not coming synchronized manor. some calls are coming to client ...
0
votes
0answers
101 views
NetStream.play + video.attachNetStream won't show any video
I am new to Flash programming. All I wanted to do is stream my local webcam to my red5 server and receive the data in another video.
Therefore I wrote the following code:
...
0
votes
0answers
66 views
Determine media server type through NetConnection (AS3)
I am wondering if it is possible, using the NetConnection class to retrieve some sort of agent string for the server it is connected to.
Short of this, is there any fairly reliable way to determine ...
0
votes
1answer
155 views
Flash Media Server NetConnection problem with Client Object
i am connecting successfully to an fms with the following command:
netConnection = new NetConnection();
netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
...
0
votes
1answer
172 views
Actionscript 3 Array to Java ArrayList using Red5
I'm creating an array in AS3 and sending it using a NetConnection to a red5 server as so:
var data:Array = new Array();
data.push("getTest");
NC.call("getUsers", new Responder(onSuccess, onFail), ...
0
votes
1answer
81 views
Multiple netconnection at one mxml application?
Since I have to get data from other red5 application. is it possible using multiple netconnection in one mxml application?
0
votes
0answers
150 views
Actionscript 3 load and then publish data problem
I am trying to load video from rtmp server and then send this video to this server using actionscript 3. I always create NetStream object then NetStream object with NetConnection, attach NetStream to ...
0
votes
0answers
218 views
Flash Media Server - Get More Info for NetConnection.Connect.Failed Error?
I have a single server that runs IIS and FMS, both on port 80. The server has two internal IPs assigned to it, one for IIS and the other for FMS. I also have two static public IPs. My router maps ...
0
votes
2answers
874 views
Timeout in AS3 events
I have a NetConnection object:
myNetConnection = new NetConnection();
myNetConnection.addEventListener(NetStatusEvent.NET_STATUS, statusHandler);
myNetConnection.connect("rtmp://address");
And in ...
0
votes
1answer
400 views
How can I catch and/or deal with “Error #2030: End of file was encountered” on a NetConnection in ActionScript 3?
I'm currently writing a client in ActionScript 3 that talks to a Red5 application/media server via a NetConnection object. The server sends the client multiple types of data over this connection ...
0
votes
1answer
376 views
Muting all sound for a streaming video in Actionscript-2
So I'm trying to mute a streamed video. For now I'm working with one in the same directory.
var flvURL = 'flvInThisDirectory.flv';
var netConn:NetConnection = new NetConnection();
...
0
votes
3answers
137 views
Is it possible to force a source port on a NetConnection?
I'm new to ActionScript, but I'm trying to decipher a pre-existing project and make some modifications as I go.
I have a section of code that starts with creating a new NetConnection and then ...
0
votes
2answers
347 views
How to relay complex type via NetConnection to FMS?
I need to send complex type object (marked RemoteClass in Flex) via NetConnection to other clients.
[RemoteClass]
public class ComplexType
{
public var _someString:String;
public var ...
0
votes
0answers
363 views
Simple NetConnection to FMS raises CPU load to 90%
I experience a strange behaviour in my iPhone app generated with the cs5 packager.
If i break it down to the basic components, this is what's happening:
Create a NetConnection to an FMS app ...
0
votes
0answers
108 views
What does. “NetConnection instance found. NetStream instance found. Connect call found.” mean?
I'm developing ads with videos that will be hosted by a company. Their salesperson just told me that their creative team notified them of the following errors:
1) NetConnection instance found. (1)
...
0
votes
1answer
342 views
Connecting to web server using flash.net.NetConnection
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 ...
0
votes
1answer
214 views
Can I SEND messages via the underlying NetConnection of a receiving (playing) NetStream object?
Here's my problem: I have a NetConnection object connected to a server. On top I create a NetStream object and it started to play a file from the server. Classic so far.
What I need now, is to be ...
0
votes
1answer
356 views
override flex netconnection call method that uses variable arguments
I need to override the call method from NetConnection class, the signature of the method is:
public function call(command:String, responder:Responder, ...parameters):void
How do I override that ...
0
votes
1answer
447 views
NetStatusHandler never gets called (Flash CS5)
I'm using this code to connect Flash CS5 to WebORB:
import flash.display.*;
import fl.events.*;
import flash.events.NetStatusEvent;
import flash.net.*;
import flash.utils.*;
import fl.transitions.*;
...
0
votes
1answer
606 views
flex4: fetch events from loaded swf using swfloader
I have a master swf that loads a child swf using SWFLoader class. the child swf is connecting to adobe flash media server using NetConnection class. using the parent swf i want to to display status ...
0
votes
1answer
859 views
flex 3: netconnection - how do i set a timeout?
Using flex 3, how do i set a timeout for a NetConnection?
code sample:
nc=new NetConnection();
nc.addEventListener (NetStatusEvent.NET_STATUS,checkConnect);
rtmpNow="rtmpe://host/test/test1"; ...
0
votes
3answers
845 views
RTMP stream of a+v plays only audio, no video
In Flash, AS3, I am using NetConnection to connect to a RTMP server, then I use NetStream to play a video+audio stream.
I attach the stream (attachNetStream) to a flash.media.Video instance that is ...
0
votes
2answers
1k views
Returning from Flex/ActionScript 3 Responder objects
I need to return the value from my Responder object. Right now, I have:
private function pro():int {
gateway.connect('http://10.0.2.2:5000/gateway');
var id:int = 0;
function ...
0
votes
1answer
669 views
Difference Flex/Flash NetConnection and Consumer/Producer
What's the difference between a NetConnection and Consumer/Producer in Flex? It seems that they both use RTMP but Consumer/Producer uses Channels and NetConnection does not. Does the Consumer/Producer ...
-1
votes
11answers
688 views
Multiplayer online Flash games, is it possible?
Some time ago I tought that using the right click and giving it a real function wans't even possible in Flash world, 3 days ago I found out that via javascript is perfectly possible, and doable
So, ...