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

#1 2013-03-18 19:39:22

mattjfk1
New Scratcher
Registered: 2013-03-18
Posts: 1

Blocks for background and sprite into one block.

I would like to be able to place Blocks that is used for the background in the same block as the Block used for sprites/characters.

Offline

 

#2 2013-03-18 20:32:37

kayybee
Scratcher
Registered: 2009-12-07
Posts: 1000+

Re: Blocks for background and sprite into one block.

mattjfk1 wrote:

I would like to be able to place Blocks that is used for the background in the same block as the Block used for sprites/characters.

You can't make a script continuous between stage/sprites, but you can use a broadcast.

Put this anywhere in your script

broadcast [message v]
with any message you want, and then put this somewhere else:
when I receive [message v]
Whenever the "broadcast" block is run, it'll send a message to all the sprites. Any sprites/stages with the "when I receive" block will receive the message, and will start the script.

Offline

 

Board footer