Hello,
I have a couple sprints that I wouldn't like to be shown until a certain point in my program. How can I hide them until them?
Hiding them when the green arrow doesn't do it, because they will show until the user clicks on the green arrow.
Thanks
Offline
I think this will work, if you are making an animation. Otherwise you might have to change some of the things.
In the script that has user input to start the program place a block that sets timer to 0.
directly below that, place a block for Broadcast (something you can remember).
on all sprites that need to be hidden, have a script like,
When I receive |whateverItWasYouChose|
Hide
End this script
Then, in the script that user starts
|Forever
|If <timer=*>
|Broadcast |SomethingElse|
|||||||||||||||||||||||||>>^
And the sprite will receive it when the time is that. In the receive, just put a show block.
I hope this helps. If it is a game you will need something other than a timer.
Offline