Array names from an array

i have an array of array names, but i’m having trouble with it being considered a string:<BR>
onstageArray = ["_root.backstageArray", “_root.perfArray”];
<P>
myName=onStageArray[0];

i’ve tried using eval, and it doesn’t work , so how can i turn an array member into a reference to an array? anybody…bueller?

-mojo

take out the quotation marks… that might work.

a = [1, 2, 3];
b = ["go", "for", "it"];
n = [a, b];
x = n[1]
trace(x)

outputs:

go,for,it