whoknows361
Technical User
I am trying to concantenate (?) some info... Basically I have a variable
_root.mycurrentchoice
and I want to hit the movieclip
_root.invis_mc.mytitle + (_root.mycurrentchoice - 1)
and then tell it to gotoAndStop(2);
I have tried:
and this doesn't work.. but you get the idea... How would I do what I am trying to do.
_root.mycurrentchoice
and I want to hit the movieclip
_root.invis_mc.mytitle + (_root.mycurrentchoice - 1)
and then tell it to gotoAndStop(2);
I have tried:
Code:
string = "_root.invis_mc.mytitle" + (_root.mycurrentchoice -1);
string.gotoAndStop(2);
and this doesn't work.. but you get the idea... How would I do what I am trying to do.