Two things...

1. You're failing to understand how local connection works. You can't have
two flash player's connect to the same named connection.
2. It's working (or rather not working) in Chrome because of this:
https://helpx.adobe.com/flash-player/kb/unsandbox-localconnection-chrome.html

On Wed, Aug 3, 2016 at 9:08 AM, mark goldin <[email protected]> wrote:

> I have the following code:
> private function createLocalConnection():void
> {
> conn = new LocalConnection();
> conn.client = this;
> try {
> conn.connect("ConnectionName");
> } catch (error:ArgumentError) {
> Alert.show("Can't connect");
> }
> }
> I am loading different applications. When first is loading I dont get an
> error. When second is loading I do get it. But in IE only, Chrome doesn't
> have that problem.
> As the result some things dont work in IE.
>
> Any idea what's going on?
>
> Thanks
>

Reply via email to