Pages: 1
Topic closed
Hi, I'm wondering how to draw something (of course I'm Using pen functions) but instead of drawing just over the stage I want to draw over a sprite. doing this will allow me to move the draw I made, my idea it's to make a stick man animation program, but, I only can draw over the stage.
I tried a multi page background, but when I change the background the drawing remains, it's doesn't change with the background.
any ideas.
Examples: I had tried many tips, but all fails
Offline
Try stamping down the sprite you want to draw over using the (stamp) block before you draw using the pen function, but before you draw, hide the sprite so try something like this:
in sprite to draw over
green flag clicked{
show
stamp
hide
broadcast "Draw"
}
in sprite that draws
when I recieve: "Draw"{
do whatever
}
But at the moment, however there is no way to dynamicly draw a pen function to a sprite.
something you can do however, is do this: draw to the stage, then right-click the stage (or option-click on a mac) and select "grab screen region for new sprite" (may sometimes be ..."new costume") then, you can move the sprite around as you wish.
Hope it helps,
Toontownmiser
Last edited by toontownmiser (2007-08-15 23:03:16)
Offline
Topic closed
Pages: 1