0
votes
1answer
18 views
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. …
0
votes
1answer
82 views
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 …
0
votes
2answers
182 views
What is the best way to handle refreshing a localConnection between AS3 and AS2 swfs using SWFBridge? (load, unload, load again)
I have an AS2 swf that is hosted by an AS3 swf and they connect using SWFBridge. During the course of things i need to unload the AS2 swf and reload it. Therefore I assume I need to re-establish the …
0
votes
3answers
77 views
How do LocalConnections in AS3 communicate?
I'm about to start using LocalConnections in a couple SWF's to let them talk to each other. But before I head down this road, I need to make sure it's not going to cause any popups and confirmation …
2
votes
3answers
103 views
Avoiding LocalConnection’s 40k size limit when data object may be larger than 40k
Flash's LocalConnection mechanism has a 40k size limit on individual messages passed to send(). I'm running into a situation where I have a complex object that I need to send which may end up being …
0
votes
2answers
70 views
LocalConnection and iframes
I'm trying get LocalConnection to work between two swf's placed within two different IFRAMES.
I've worked with LocalConnection often without too much trouble. But this time --i suspect because of the …
1
vote
2answers
281 views
Does localConnection in flash player randomly fail sometimes?
I have two flash movies communicating with each other using localConnection, passing an object from swfA to swfB. This seems to work fine, but will occasional fail. The only information we have is …
0
votes
1answer
384 views
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() …
0
votes
3answers
188 views
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 …
1
vote
5answers
365 views
Why is my swf causing the Flash Player to crash.
I've got a flex-based swf, which is loading an AS 2-based swf and then, negotiating further activity via a LocalConnection.
From time to time, the AS 2-swf can request that the flex-based swf load a …
1
vote
1answer
132 views
LocalConnection between different instances of the same SWF?
Hi,
I'm building a simple audio player in AS3. I would like to embed multiple instance of this audio player in my html and when one's playing, others are paused. Is it possible to use LocalConnection …
0
votes
1answer
118 views
Strategy for making LocalConnection ids unique
I'm using a localconnection to allow communication between an actionscript 2 swf and an actionscript 3 swf.
Localconnection objects share a global namespace across a user's pc.
So, this means, a user …
0
votes
0answers
37 views
Can swish or swishmax work with LocalConnection
I want to allow some files i generate with in Swish communicate with some other Flex-based swfs.
0
votes
2answers
166 views
Are there wrappers for the Actionscripts’s LocalConnection for C# or Java?
Hi,
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 …
0
votes
1answer
113 views
How can an AS3 swf hosting an AS2 swf share the same array?
I have an AS2 swf that has an array that is updated when a user clicks on items on the screen. The array stores the currently selected items. This As2 swf is hosted by an AS3 swf loaded in using …
