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

#1 2008-10-27 08:45:58

tsmother
Scratcher
Registered: 2008-10-27
Posts: 1

Sprites

I have created 6 stages the way I want them and now I need to add a couple sprites, but I only want sprites on certain stages.  Only problem is when I add a sprite it show on all stages.  Is there a way to add the sprite I want only one stage at a time?

Last edited by tsmother (2008-10-27 08:47:12)

Offline

 

#2 2008-10-27 12:21:24

Mayhem
Scratcher
Registered: 2007-05-26
Posts: 1000+

Re: Sprites

The best way would be with Show and Hide commands.

You could do it with broadcasts, or another way of doing this would be by having teh sprite chek the stage background.  Eg for a sprite that is only to show on background 3:

Forever
  If (background of stage = 3)
    Show
  Else
    Hide


Web-spinning Spider:  http://scratch.mit.edu/projects/Mayhem/18456
3D Dungeon Adventure:  http://scratch.mit.edu/projects/Mayhem/23570
Starfighter X: http://scratch.mit.edu/projects/Mayhem/21825
Wandering Knight: http://scratch.mit.edu/projects/Mayhem/28484

Offline

 

Board footer