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
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
Offline