Flash Command error
February 29, 2008 12:00 AM
My guess is that you have a lectora variable that is expecting a string and you are trying to pass it an array so it chokes. Try converting your array to a string and passing that over. For example:
Code:
var passString:String();passString = "";for(i=0; i
So the idea is you just loop through your array and dump it into a string - then pass that. I'm not sure if you are trying to pass things with ExternalInterface or getURL - but I would lean more towards using flash's external interface if you are publishing to flash 8 or above. Let me know if this works or breaks everything you are trying to do :)
Discussions have been disabled for this post