This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2009-07-23 09:07:47

reddsky
Scratcher
Registered: 2009-07-20
Posts: 10

Help?!?!

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  smile

Last edited by reddsky (2009-07-23 09:09:49)

Offline

 

#2 2009-07-24 01:38:14

Chrischb
Scratcher
Registered: 2008-07-24
Posts: 1000+

Re: Help?!?!

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!


I fall: It's a tragedy. You fall: It's comedy.
Hmph enjoy your fall - I get a lovely spring... without pans of new leaves.

Offline

 

#3 2009-07-24 11:11:37

HexTheHedgehog
Scratcher
Registered: 2009-06-11
Posts: 16

Re: Help?!?!

ok, do you want me to do it? you get 98% credit.

Offline

 

Board footer