Hi all, please help
I have a list called "food" that contains 4 strings.
What a want is to take those strings one by one and turn them into a list-variable of there own.
So that each property in het list "food" has his own list-var with the same name.
I know how to do this in Acionscript, but lingo is a bit diferent
I was thinking of something like this:
//////////////////////////////////////
on exitFrame me
food = ["bread", "meat", "soup", "fish"]
repeat with i=1 to food.count
value(food) = ["some"]
end repeat
trace(bread[1])
end
//////////////////////////////////////
But of course this isnt realy working....
Is there a way to do something like this ?
I have a list called "food" that contains 4 strings.
What a want is to take those strings one by one and turn them into a list-variable of there own.
So that each property in het list "food" has his own list-var with the same name.
I know how to do this in Acionscript, but lingo is a bit diferent
I was thinking of something like this:
//////////////////////////////////////
on exitFrame me
food = ["bread", "meat", "soup", "fish"]
repeat with i=1 to food.count
value(food) = ["some"]
end repeat
trace(bread[1])
end
//////////////////////////////////////
But of course this isnt realy working....
Is there a way to do something like this ?