On Wednesday, September 11, 2013 6:08:59 PM UTC+2, Leo wrote: > I want to quit applications after holding cmd+q for 3s. >
Try this quick GUI applescript in a trigger bound to ⌘Q, uncheck all 3 options under Activate, set delay to 3s and scope all applications. *tell* *application* "System Events" *to* *tell* (*first* *process* *whose* frontmost *is* true) --delay 0.05 *tell* *menu bar* 1 *to* *tell* *menu bar item* 2 *to* *tell* *menu* 1 *to* ¬ *click* (*every* *menu item* *whose* value *of* *attribute* "AXTitle" * contains* "Quit") *end* *tell* Now in Keyboard Shortcuts tab in Keyboard prefpane change for instance Quit TextEdit to ⌃⌥⌘Q. Does it work as expected? It does for me. The main problem is finding a way to change Quit for all applications in Keyboard prefpane as QS doesn't seem to override it. -- You received this message because you are subscribed to the Google Groups "Quicksilver" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/blacktree-quicksilver. For more options, visit https://groups.google.com/groups/opt_out.
