visible property of objects
Simple question:
I have a button and a text (Tostop the carnage press the Stop button)I want these 2 objects to be invisible first and then either to fade in or to jsut be visible after playing the carnage for 10 seconds
So I typed in ACtions
Keyframe 1.
stop_btn.visible = false;
stop_txt.visible = false;
Keyframe at the end of the frames where the "carnage"happens:
count ++
If (count == 300){
stop_btn.visible = false;
stop_txt.visible = false;
}
(The idea is to let the user see the carnage for 10 seconds and then give him a chance to press "Stop" to end it.
But the ábove' did not work at all - it brought out a strange error message after compiling.
I finally changed the setup so that the button always shows.
But for future experiments - how would an expert solve this problem?
Kind regards, William-Michael
