<pen down> idk how to make paint projects were u press down and it paints but i know pen down makes u paint and stuff
Offline
Right...when the pen is down, a line will be painted wherever the sprite goes. So, if you want the line to go where the mouse goes, just setup a Forever loop that positions the sprite at the mouse.
I have a gallery of different paint projects...you can take a look and see how others have done it.
http://scratch.mit.edu/galleries/view/17444
Offline
to extend on what paddle2see said, one you have the forever loop make a new script like this:[blocks]
<when green flag clicked>
<forever>
<if><mouse down?>
<pen down>
<else>
<pen up>
<end>
<end>
Last edited by yambanshee (2008-09-22 11:52:45)
Offline