So I have a button that occurs throughout the entire movie on the main timeline. I’m declaring a variable on each frame, so if you hit that button on that frame, it should take that variable and use it in the path to something I wanted turned on via _alpha = 100.
So, I want it to be something like:
on (release)(
_root.movieContainer. + “The variable” +.thingToTurnOn._alpha = 100;
)
So, I’ve never done this before, and I don’t know where to begin, I just know that I want that variable I declared on the main timeline to be used in that path when the button is clicked.