There is a way to move sprites with the keyboard and with the mouse.
For mouse moving, apply this script to your sprite:
<when green flag clicked>
<forever if><< <mouse down?> <and> <touching[ mouse pointer >>
<go to[ mouse pointer
<end>
For arrow key movement, apply these scripts:
<when green flag clicked>
<forever if><key[ right ]pressed?>
<change x by( 7
<end>
<when green flag clicked>
<forever if><key[ left ]pressed?>
<change x by( -7
<end>
<when green flag clicked>
<forever if><key[ up ]pressed?>
<change y by( 7
<end>
<when green flag clicked>
<forever if><key[ down ]pressed?>
<change y by( -7
<end>
Offline