hello,
how can use an array in double quotes? for example
_root.gec.attachmovie("den",123,0);
i want to use den name in an array, but this doesn't work;
_root.gec.attachmovie(abc[1],123,0);
i also used with parantheses.
thanks
'this' will only work if the path to abc[1] is within the scope of _root.gec.
if the array abc is defined in _root then do:
_root.gec.attachmovie(_root[abc[1]],123,0);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.