Hi,
What is the way to be able to target an instance dynamically.
I have a class that store static variables to which I can assign data.
My one class object: glo.bal.sectionname contains "ins_section1"
So what would be the right way to tell my movieclip to move 1 frame. I was sort of looking at:
Which I was hoping to basically get ins_section1.nextFrame(); but I obviously know it is trying to call the path of glo -> bal -> sectionname. Which is the right way to concat this together?
Reality is built on a foundation of dreams.
What is the way to be able to target an instance dynamically.
I have a class that store static variables to which I can assign data.
My one class object: glo.bal.sectionname contains "ins_section1"
So what would be the right way to tell my movieclip to move 1 frame. I was sort of looking at:
Code:
glo.bal.sectionname.nextFrame();
Reality is built on a foundation of dreams.