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