• make it slide, instead of blink to another space
Use SPRITEPATH. For some reason this command didn't get put into the scripting help. I just realized it's not in there when I went to look up thye syntax for it.
SPRITEPATH spriteNumber x y speed
spriteNumber is the sprite number
x is the x coordinate to move the sprite to
y is the y coordinate to move the sprite to
speed is how fast to move it. This is actually how many times the sprite will be drawn as it moves there, so a lower number is faster and a higher number is slower.
ON MOUSEDOWN
SPRITEPATH 1 mousehorz mousevert 100
END MOUSEDOWN
That will move the sprite to the mouse position every time the mouse is clicked. Play around with the 100 at the end to see how the speed changes.