I feel clumsy because I want to move an image with the mouse, draging it, but my code seems to me too complicated. I wrote in image code:
Code: Select all
global mytest
on mousedown
put true into mytest
end mousedown
on mouseUp
put false into mytest
end mouseUp
on mousemove
if mytest then
set the loc of me to the mouseloc
end if
end mousemove
