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

In OS X, in order to quickly get at menu items from the keyboard, I want to be able to type a key combination, have it run a script, and have the script focus the Search field in the Help menu. It should work just like the key combination for Spotlight, so if I run it again, it should dismiss the menu. I can run the script with Quicksilver, but how can I write the script?

link|improve this question

feedback

2 Answers

Alternatively, hit cmd-? and don't mess with the script. :-) That puts key focus in the help menu's search field.

link|improve this answer
feedback
up vote 1 down vote accepted

Here is the script I came up with.

tell application "System Events"
    tell (first process whose frontmost is true)
        click menu "Help" of menu bar 1
    end tell
end tell
link|improve this answer
Reminder: you might need GUI Scripting enabled before that script will run. – millenomi Sep 16 '08 at 13:17
feedback

Your Answer

 
or
required, but never shown

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