Using "click at" on a 2nd Monitor

Im trying to create an apple script to do a mouse click at a certain point on my 2nd monitor. I can get it to work on my main monitor, but not my 2nd monitor. Does anyone know how to force the apple script to work on my second monitor ???

Replies

My second monitor is located to the left of my main monitor. So, to click on my second monitor, I simply use a minus sign to designate the x coordinate. Like this:

tell application "System Events" click at {-100, 300} end tell

Bill Cheeseman

Thanks Bill. Just saw this message now. Im gonna try it out.