HI Everyone I am facing memory leaks problem in Internet Explorer and after
searching lots of blog I found about double LocalConnection.connect hack I
am using this hack in this way
try{
var lc1:LocalConnection = new LocalConnection();
var lc2:LocalConnection = new LocalConnection();
lc1.connect('name');
lc2.connect('name');
}
catch (e:Error){
Alert.show( e.message );
}
And it is giving me an error ArgumentError: Error #2082
Can any tell me what is the problem here and does this hack work for
Garbage Collection. Also pleases explain this code I don't know much about
this code :-) .
Thanks In Advance Parkash ARjan.