vote up 0 vote down star

is there a way to trace an ARRAY in FLASH.

I want to have an output similar to PHPs command:print_r(myArray)

for ex: (in flash):

var event:Array = new Array();
event['name']='david';
trace(event);  // that display anything

while print_r(event) in PHP would display as string:

Array {
['name'] => david,
}

I want to achieve same kind of result in flash.

flag

2 Answers

vote up 2 vote down check

trace(array.join()); would work for numerically indexed arrays. For associative arrays, you have to use for..in construct.

for(var t:Object in array)
  trace(t + " : " + array[t]);
link|flag
for(var t:Object in the only type allowed for loop is string type. , got error message. – David King Oct 8 at 10:46
Try for(var t in array) – Amarghosh Oct 8 at 10:53
for(var t:Object in array) works in Flex builder 3. Can you post the error message that you're getting? – Amarghosh Oct 8 at 10:59
The only type allowed for a for-in loop iterator is String. – David King Oct 8 at 11:28
Interesting.. are you using Flex Builder or CS3? – Amarghosh Oct 8 at 11:33
show 2 more comments
vote up 0 vote down
function obj_size (o:Object){
    var n=0;
    for (var x in o)
    	n++;
    return n;
}

DOES WORK ;)

SO I SOLVED sizeof() evivalend to Array.sizeof();

How ABOUT array.push() for Objects ??

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.