In my presentation I really want a main page saying 'start' and when 'start' is clicked for the title+grass+wolf sprite to disappear and for the stage to change and 'story so far', 'controls', 'world map' and 'level select' to appear on screen (but not appear when the green flag is clicked and not until the background has changed and the things have disappeared) and when these are clicked another page comes up containing the information and when the 'level select' has been clicked for all them to disappear, then when level one selected for everything to disappear and the game to begin. The problem is - how? - How can I do this?
Thanks -Reddsky
Last edited by reddsky (2009-07-23 09:09:49)
Offline
Here's what to do:
1. Tell the Story So Far, Controls, World Map, and Level Select sprites to hide:
When Green Flag clicked
Hide
2. Tell the Start and Title+Grass+Wolf sprite to show at the beginning. Put this script in both of them:
When Green Flag clicked
Show
3. Tell the Start sprite to broadcast something when it's clicked. Let's call the broadcast "Start Clicked".
4. Go to all the sprites that you want to disappear and add this script (it includes a new broadcast for step five):
When I recieve [Start Clicked]
Hide
Broadcast [You can show now]
5: Go to all the sprites that you want to appear and add this script:
When I recieve [You can show now]
Show
6: Now tell add this script to all those sprites that you just edited with step five:
When name clicked
Broadcast [Controls (or World Map or Level Select)]
Hide
7: Then go to the same sprites and add this:
When I recieve [Any Broadcast from the other sprites]
Hide
You will need to make more than one script for each.
Hope that helps!
Offline
ok, do you want me to do it? you get 98% credit.
Offline