RE: [Flashcoders] question on localConnection

2006-08-25 Thread Sinead Hogan
It drove me nuts when testing a local connection issue once to realise that after opening my test page with swfs using local connection once, any page I opened after that would communicate to the first page's swfs. So when testing your local connection issues make sure to close all other instances

Re: [Flashcoders] question on localConnection

2006-08-25 Thread eric dolecki
Make sure you aren't sending too much data across the localConnection, or it shall break unceremoniously. I forget the limit, but there is indeed a limit. On 8/25/06, Rutul Patel [EMAIL PROTECTED] wrote: hi people, I was creating local connection between two swf file, first time it works fine

Re: [Flashcoders] question on localConnection

2006-08-25 Thread John Grden
40k limit if you know you're going to be breaking that, consider using an Object2XML converter, do a toString on the XML, break it up into 5k chunks and put those chunks into an array. Then loop the array and send each chunk across with a boolean that indicates that the last batch has been