Oops try this:

on mouseDown
  set the borderWidth of the target to 7
end mouseDown

on mouseUp
  set the borderWidth of the target to 1
end mouseUp

on mouseRelease
  set the borderWidth of the target to 1
end mouseRelease

on mouseMove x,y
  if the borderWidth of the target = 7 then
        put x,y into tLoc
        set the loc of the target to tLoc
        if tLoc is within 150,85,160,100 then
           put "good job"
      else if tLoc is within 370,70,395,95 then
         put "New good job"
      end if    
  end if
end mouseMove

Cheers again

Monte


_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to