Answered
Visible property = true on frame 100
I have a series of (6) buttons placed directly on the stage
that I don't want to see until frame 100, or basically after "100
frames in time" which is when everything on the stage is settled in
and done animating. I can't seem to get this seemingly simple task
to work. I have an "actions" layer on the first frame with this
statement for (1) of the (6) buttons as an example:
btnSoundIsOff.visible = false;
This of course works like a champ, you can't see this button at all. Unfortunately I can't seem to get it to become visible. I tried placing this statement on Frame 100 of the main timeline and realized that it can't possibly work:
btnSoundIsOff.visible = true;
I only have (1) Frame on the main timeline not including a preloader, so of course Frame 100 never gets played. I have also tried adding the visible button statements at frame 100 of my last movie clip animation but then I get run-time errors of undefined this and that. I am not grasping a important fundamental concept of AS3 apparently. I need the buttons to appear after 100 frames and also be able to work. What am I missing? Thank you, I hope I have explained enough of my crisis if not please let me know.
btnSoundIsOff.visible = false;
This of course works like a champ, you can't see this button at all. Unfortunately I can't seem to get it to become visible. I tried placing this statement on Frame 100 of the main timeline and realized that it can't possibly work:
btnSoundIsOff.visible = true;
I only have (1) Frame on the main timeline not including a preloader, so of course Frame 100 never gets played. I have also tried adding the visible button statements at frame 100 of my last movie clip animation but then I get run-time errors of undefined this and that. I am not grasping a important fundamental concept of AS3 apparently. I need the buttons to appear after 100 frames and also be able to work. What am I missing? Thank you, I hope I have explained enough of my crisis if not please let me know.
