up vote 1 down vote favorite
share [g+] share [fb]

Is it possible to intercept global copy and paste in OS X with an AppleScript? Or would I have to have some intermediary step that would trigger the AppleScript to read the clipboard?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

They way I do it in Applescript is with the following command:

get the clipboard

You could of course then do stuff like setting it to a variable and displaying it:

set xyz to the clipboard
display alert (xyz as text)

Hope that helps!

Elliott

link|improve this answer
@Elliott, that does help, thank you. Now how would I get this script to run the moment I copied something to the clipboard? – Kyle Hayes Sep 18 '09 at 15:06
1  
Hmm, that's a tricky question. I'm afraid I don't have a great answer for you on that. The best way to do something similar if you have OSX 10.6 is create a service using automator, put your applescript in as part of the action, and then assign it to a keyboard shortcut. That would get rid of some of the intermediate steps... – Elliott Bowles Oct 20 '09 at 4:56
That's not a bad idea. I'll look into that. Thanks for the help! – Kyle Hayes Nov 5 '09 at 22:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.