Show Package Contents with Quicksilver
Jul.04.08
|
Using AppleScript and Quicksilver, you can set up a handy little shortcut to Show Package Contents in the Finder. Lets begin!!!
Paste and save this modified script into script editor and call it whatever you like (call it Bob) -
- tell application "Finder"
- try
- set selectedItems to selection
- set selectedItem to item 1 of selectedItems as alias
- open folder ((selectedItem as string) & "Contents:")
- end try
- end tell
Then, with your script file selected in the Finder, go to the Trigger pane in Quicksilver Preferences, create a new HotKey Trigger, Command-G that shit, tab over, type Run, and hit Enter.
I'm partial to Command-Shift-O for the HotKey.

Post new comment