Hi Bernd,

It generally the accepted convention to do the following:

local lMouseIsDown

on mouseDown
   put true into lMouseIsDown
end mouseDown

on mouseMove x,y
   if lMouseIsDown is true then
      --> DO YOUR STUFF HERE
      set the loc of img "myCursore" to x,y
   end if
end mouseMove

on mouseUp
   put false into lMouseIsDown
end mouseUp

on mouseRelease
   mouseUp
end mouseRelease

HTH, Chipp
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to