Are there any known limitations when using the ExternalInterface to send
large amounts of data.

I set up this example and I’m not liking the result.

1. Code in flash
import flash.external.ExternalInterface;
ExternalInterface.call("receiveData",massiveString);


2. Code on htmlpage
function receiveData(args) {

        alert("result: " + args.colorData.length);
        return args.colorData.length;

}

Firefox and Internet Explorer obviously treats this differently. While
Firefox communicates with flash almost instantly and sends the string with
minimal delay Internet Explorer times out when the string gets to big.

So my question is
How come the two browsers handles this differently and how could i work
around it so that i can send that massive string.

Thanks,

joakim

_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to