I was trying to make a project where when the mouse was down there would be a pen line after but it didnt work it wouldn't go away from the cursor and was just making dots. Help?!?!?!
Offline
Try this:
[blocks]<when green flag clicked>
<forever>
<if><mouse down?>
<pen down>
<else>
<pen up>
<end>
Offline
technoguyx wrote:
Try this:
[blocks]<when green flag clicked>
<forever>
<if><mouse down?>
<pen down>
<else>
<pen up>
<end>[/blocks]
Close...but you need something to bring the sprite to the mouse. And it will work better if you hide the sprite so that Scratch doesn't think you are clicking on it...
[blocks]<when green flag clicked>
<hide>
<forever>
<go to[ Mouse-Pointer
<if><mouse down?>
<pen down>
<else>
<pen up>
<end>
<end>[/blocks]
Offline