Local Connection is a communication method for synchronizing iFrames in same window. Due to cross-domain security limitations its a bit challenge to connect iframes. As long as all iframes served on same origin, same protocol and same port they can communicate with each other.
Questions tagged [localconnection]
57 questions
0
votes
0 answers
AIR LocalConnection one to many possible?
I am using the AS3 localConnection Class
to connect one AIR desktop application with another over a local network.
Can anyone tell me if it is possible to use localConnection to connect to more than 1 device, or is it strictly 1:1 ?

Bachalo
- 6,965
- 27
- 95
- 189
0
votes
3 answers
LocalConnection working in local browser but NOT in remote site
Really puzzled by the flaky behavior of LocalConnection.
Using a debug utility(LuminicBox) that uses localConnection to work.
When the page containing the swf is loaded in a browser locally , localConnection works.
When the identical page and swf…

Bachalo
- 6,965
- 27
- 95
- 189
0
votes
1 answer
AS3 localConnection with SSL
Trying to make a local connection using Flash Professional CC targeting Flash Player 11.1
This code works in testing and in the browser, no errors during debugging, works fine on my server with no domain, but does not work on my server with an SSL.…

user2268083
- 114
- 8
0
votes
1 answer
Cannot access to my dyndns host when i am inside the network
Router ip : 192.168.1.1
Camera 1 ip : 192.168.1.80 port : 8000
Camera 2 ip : 192.168.1.81 port : 8100
Dyndns host : test.dyndns.org
Firewall disable
upnp : enable
port fordward 8000 to 192.168.1.80 (both)
port fordward 8100 to …

Hatziioannou Haris
- 11
- 1
- 3
0
votes
1 answer
Flash, LocalConnection and DOM
I have a Flash object on my site, which has this code:
this.ld = new LocalConnection();
this.ld.allowDomain("*");
ExternalInterface.call("alert", this.ld.domain);
It alerts my domain successfully. However, what I want is to access the HTML DOM…

Tower
- 98,741
- 129
- 357
- 507
0
votes
1 answer
Flash Player 10,0,32,18 upgrade breaks my LocalConnections. Any ideas?
For some reason everyone who upgrades their Flash Player to the latest version (10,0,32,18) immediately start having problems with my application. According to my logging, LocalConnection.connect() is failing. The only documented reason for this…

Herms
- 37,540
- 12
- 78
- 101
0
votes
2 answers
Java LocalConnection Client
I'd like to connect a Flash Player instance (AMF3) to a Java LocalConnection. I know how to implement the AMF3 spec, since I've done a lot of work with Red5, but I'm unsure how to navigate building the actual LocalConnection interface. There is C…

Naftuli Kay
- 87,710
- 93
- 269
- 411
0
votes
3 answers
Monitor browser tabs with localConnection and sense when a user closes a tab
In my application the browser window connect with long polling(comet) with the server.
If the user open several browser tabs, only one of them(called the master) communicate with the server and serves as a proxy for the other tabs. I want to use…
pablo
0
votes
2 answers
Are there wrappers for the Actionscripts's LocalConnection for C# or Java?
I want to communicate with the LocalConnection framework of Flash via C#/Java/C++. My search for already implemented wrappers was not as successfull as I wish ;). There exist several servers (like FluorineFx) which support binding of C# objects to…

Michael Hablich
- 303
- 2
- 9
0
votes
1 answer
Multiple local connections in flash - what's the better architecture?
I'm using localConnection in AS3 to allow several flash applications to interact with a central application. (Some are AS2, some AS3).
The central application must use a seperate localConnection variable for each receiving connection (otherwise the…

Eliram
- 606
- 2
- 9
- 21
0
votes
1 answer
AS3 - LocalConnection Error #3691: Resource limit for this resource type exceeded
I am using LocalConnection Object to send record messages on other SWF.
My code is below.
var outgoing_lc:LocalConnection = new LocalConnection();
outgoing_lc.send("_log_output", "displayMsg", outStr)
noting much complicated, its working in almost…

meghana
- 907
- 1
- 20
- 45
-1
votes
2 answers
Ansible Local connection script argument path failed to detect
I have a ansible playbook which calls 2 roles. role 1 runs on local, which has a script with arg as file path /tmp/inputfile/input.csv. The playbook looks:
- hosts: "{{my_extra_var_IP}}"
connection: local
roles:
- prereq
Roles task:
- name:…

Niceha
- 384
- 2
- 12