Questions tagged [netconnection]

77 questions
1
vote
1 answer

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 html and view from firefox, chrome or other browser…
user444757
  • 665
  • 1
  • 7
  • 18
1
vote
1 answer

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 able to send some (short) messages back to the…
Valeriu Paloş
  • 3,459
  • 1
  • 20
  • 12
1
vote
0 answers

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 bClient = new NetConnection(); bClient.client = {…
Carsten
  • 539
  • 4
  • 10
1
vote
1 answer

Code NetConnection.Connect.SSLHandshakeFailed in my RED5 server

I have an AS3 flash published with Flash Professional CC and published for Flash Player13. The problem is: When I create a NetConnection to my RTMP Server (RED5 v1.1) I Have obtained th following error message:…
Pimager
  • 169
  • 1
  • 3
  • 12
1
vote
0 answers

NetConnection addHeader not working?

I am using an open source flash player to play video files. Now the twist is that the server that hosts the files checks the Referer in the header before serving the files, so I need a way to forge these headers. I'm on my own server, where I try…
NJ.
  • 7,486
  • 1
  • 19
  • 20
1
vote
0 answers

NetConnection will drop after 4 streams were viewed

In my Adobe AIR application I have a list of video streams available to view, user can switch from stream to stream, however NetConnection will raise NetConnection.Connect.Closed event after user switched between 4 streams, basic example User…
inside
  • 3,047
  • 10
  • 49
  • 75
1
vote
1 answer

Adobe AIR stream publish breaks on iOS devices

I am using Adobe Air 13.0 to upload a streaming video to Flash Media Server. This works fine on all Android devices, but on iOS devices (both iPad and iPhone) the publish stream breaks after several time (could be 10 seconds, could be 5…
Koby Douek
  • 16,156
  • 19
  • 74
  • 103
1
vote
0 answers

Flash/AIR Local Network connection with groupSpec.peerToPeerDisabled = true, NetConnection and "rtmfp:"

I need to stablish a connection between a flash in a web page and an air application in the local network. I need to auto-discover the clients so I want to use "rtmfp". I'm being able to do it by using: _nc = new…
Jorge Miranda
  • 231
  • 1
  • 10
1
vote
0 answers

How to restart a frozen NetStream AS3?

I have the following code in my AS3 project: nc.addEventListener(NetStatusEvent.NET_STATUS, netConnectionStatus); netRemoteStream.addEventListener(NetStatusEvent.NET_STATUS,…
Pimager
  • 169
  • 1
  • 3
  • 12
1
vote
1 answer

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"; nc.connect(rtmpNow,fuid,gameName);
ufk
  • 30,912
  • 70
  • 235
  • 386
1
vote
3 answers

ActionScript 3.0 How can I send multidimensional array of objects over network

I am new to this part of AS 3.0. I found the example by Lee Burrows. That works fine, but I need to send a complex array of objects or at least multidimensional array. And I can't get it to work. Struggling with it for a week. Can anyone help? Here…
1
vote
3 answers

NetConnection unhandled NetStatusEvent

Occasionally I'm getting an unhanded NetStatusEvent when using NetConnection to connect to a Red5 server: Error #2044: Unhandled NetStatusEvent:. level=error, code=NetConnection.Call.Failed This is how I am connecting (the only place where…
Dave New
  • 38,496
  • 59
  • 215
  • 394
1
vote
0 answers

IOS 6 - NetConnection Close Issue

http://forums.adobe.com/thread/1070996 same error occurred in iPhone4(ios 6.1.3) and AIR SDK 3.7. I attempt to close netconnection to the wowza server the app freezes and can't control anything( only back push device home button). adobe forum says…
samohan
  • 109
  • 2
  • 9
1
vote
0 answers

AS3 RTMP client not working properly

I'm trying to view a stream that works in JW player, but not in my code. Code: netcon.connect("rtmp://..."); netcon.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler); netcon.addEventListener(SecurityErrorEvent.SECURITY_ERROR,…
1
vote
1 answer

Fluorine Client only working when Charles Web proxy is open

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 Charles open and so I can see what is being sent. On…