Code: Select all
on mouseUp
   repeat with y = 150  to 330
      set the screenMouseLoc to "285," & y
      put the mouseColor & return after temp
   end repeat
end mouseUp
Craig
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseUp
   repeat with y = 150  to 330
      set the screenMouseLoc to "285," & y
      put the mouseColor & return after temp
   end repeat
end mouseUp
 
 
Klaus, I am insulted. Wait, I have a better idea, how much?maybe locking the screen will help?
I bet it does!
 
  
 Code: Select all
on mouseUp
   put the millisecs into tM
   lock screen
      repeat with y = 150  to 330
            set the screenMouseLoc to "285," & y
            put the mouseColor & return after temp
      end repeat
   unlock screen
   put the millisecs - tM
end mouseUp 
 
Code: Select all
on mouseUp
   put the ticks into xx
   set the screenMouseLoc to "202,200"
   repeat 10
      put the mousecolor & return after temp
   end repeat
   put (the ticks - xx) / 10
end mouseUp
