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

#1 2011-05-17 13:58:23

CainInACan
New Scratcher
Registered: 2011-05-14
Posts: 8

Need help

How do I make sprites appear one by one from the bottom of the screen? Thanks if anyone can help, need to finish this for a project in school :-)

Offline

 

#2 2011-05-17 14:11:38

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Need help

I would suggest a broadcast called "Sprites show in order". Then, in the first sprite, put:

Code:

when I receive [Sprites show in order]
show

In the next,

Code:

when I receive [Sprites show in order]
wait (0.1) secs
show

Next:

Code:

when I receive [Sprites show in order]
wait (0.2) secs
show

Next:

Code:

when I receive [Sprites show in order]
wait (0.3) secs
show

You get the idea.  smile

Offline

 

#3 2011-05-17 14:21:26

CainInACan
New Scratcher
Registered: 2011-05-14
Posts: 8

Re: Need help

Thanks, but where does the original show sprites in order go? on the stage scripts?

Offline

 

#4 2011-05-17 14:35:25

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Need help

CainInACan wrote:

Thanks, but where does the original show sprites in order go? on the stage scripts?

It can go there, or in the sprite that causes the event, anywhere.  smile

Offline

 

#5 2011-05-17 16:34:23

CainInACan
New Scratcher
Registered: 2011-05-14
Posts: 8

Re: Need help

Ok, thanks for your help  smile

Offline

 

#6 2011-05-18 04:05:53

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Need help

CainInACan wrote:

Ok, thanks for your help  smile

You're welcome.  smile  It's fun.  big_smile

Offline

 

Board footer