Hello everyone I have been trying to solve the problem that
LocalConnection can only use one Identifier and must not be used again.
I tried doing this:
In flex (myFlex.swf):
<mx:SwfLoader source="myflash.swf?IDConector={RandomID}"/>
In flash (myflash.swf):
lc:LocalConnection = new LocalConnection();
lc.connect(_level0.IDConnector);
(here I also print the value of IDConnector)
where RandomID is an ID I create so is unique everytime a new window is
opened.
if I open in a browser and in the URL I set:
myflash.swf?IDConnector=test
I see the value correctly but if I run myFlex.swf that loads the flash
I get IDConnector as undefined.
How should I get the value of IDConnector?
Thanks
Terius