Hello all, I use these forums quite often but usually do not have to post since the answers are everywhere, but I cannot seem to get this to work. I am using a webservice to populate my movie with data but I need to be able to pass 2 arrays from that first movie to my second, which will be on the webpage. The first array is a list of video sources, the second is the number of video sources available (changes daily). When I test both .swf's locally and i only send 1 array i can populate my dynamic text boxes but the movie crashes, when I send both arrays I get nothing, and it also crashes. I am using as2 in flash cs3. this is the code that i have been working with.

Sending:

var outgoing_lc:LocalConnection = new LocalConnection();
sport.onRelease = function(Void):Void { outgoing_lc.send("videolist", "methodToExecute", vt, nvid);};

Receiving:

var incoming_lc:LocalConnection = new LocalConnection();
incoming_lc.connect("videolist");
incoming_lc.methodToExecute =
function(param1:Array, param2:Array):Void { vt = param; };

Any help at all would be greatly appreciated. ~Sean P.