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

#1 2013-04-10 17:13:07

smith1031
Scratcher
Registered: 2012-04-30
Posts: 22

Making multiple sprites move at once

How do I make multiple sprites at once upon being prompted?

Offline

 

#2 2013-04-10 19:32:02

djdolphin
Scratcher
Registered: 2010-03-23
Posts: 100+

Re: Making multiple sprites move at once

Use broadcasts:

when gf clicked
broadcast [move v]

On one sprite you could use something like this code:

when I receive [move v]
move (10) steps

And on another you could use:

when I receive [move v]
move (10) steps

This will make both sprites take 10 steps at the same time when "move" is broadcasted. If you still don't get it, check out the wiki article on broadcasts.

Last edited by djdolphin (2013-04-10 19:34:40)

Offline

 

#3 2013-04-10 20:12:26

smith1031
Scratcher
Registered: 2012-04-30
Posts: 22

Re: Making multiple sprites move at once

thank you

Offline

 

#4 2013-04-10 20:23:13

smith1031
Scratcher
Registered: 2012-04-30
Posts: 22

Re: Making multiple sprites move at once

I have about 20 or 25 sprites that need to move! Thanks so much! I am still uncertain how to do this. If you can, got to my profile and the simulation I am working with is posted. The actual notes for what I am trying to accomplish are there. Thank you again!

Offline

 

Board footer