Show Package Contents with Quicksilver

Apple

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) -

  1. tell application "Finder"
  2.         try
  3.                 set selectedItems to selection
  4.                 set selectedItem to item 1 of selectedItems as alias
  5.                 open folder ((selectedItem as string) & "Contents:")
  6.         end try
  7. 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

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd><img>
  • Lines and paragraphs break automatically.