Pages: 1
Topic closed
Hi everyone, i'm try to make an animation program with scratch, and i need to stamp some sprites on other sprites, how o can do this(i tried, but the stamp come under the other sprite)?
<when I receive[ cat
<forever>
<go to[ mouse pointer
<show>
<if><mouse down?>
<stamp>
<end>
<end>
this is the code i use to stamp, but it doesn't work for stamp a sprite on another sprite
Offline
Stamping only works on the stage, although stamping on sprites has been suggested.
Offline
How about this:
Variables: X1 - Change to move the 1st sprite. Y1 - Change to move the 1st sprite. X2 - Change to move the 2nd sprite. Y2 - Change to move the 2nd sprite. [When flag clicked] [hide] [forever] [][clear] [][go to x: (X1) y: (Y1)] [][switch to costume [costume1]] [][stamp] [][go to x: (X2) y: (Y2)] [][switch to costume [costume2]] [][stamp] [_______]
Offline
Topic closed
Pages: 1