Shiny Droplets are small AppleScript-based applications that integrate with the Finder toolbar to provide fast shortcuts to text editors and other applications:

To install Shiny Droplets, download them from here, extract the ZIP file, then drag some Droplets onto your Finder toolbar.

To use them, simply drag some files onto the Droplet or highlight them and click on the button.

tell application "Finder"
	if selection is {} then
		tell application "BBEdit"
			activate
		end tell
	else
		set finderSelection to selection as alias list
		tell application "BBEdit"
			open finderSelection
			activate
		end tell
	end if
end tell

Dropping files onto a Droplet will cause each file to open in its own editor window, and selecting multiple files before clicking on a Droplet will cause them to open in the same editor window (if the editor supports this functionality).

Share this article: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Twitter
  • GatorPeeps
  • Digg
  • Reddit
  • muti.co.za
  • DZone
  • del.icio.us
  • StumbleUpon
  • Technorati
  • Ma.gnolia
  • Slashdot

Related posts:

  1. Showing hidden files and directories in the Finder in Mac OS X
  2. Mac OS X Quick Tip: Launch the screen saver with a bash script using AppleScript
  3. Extract and sort email addresses from text files with Automator
  4. Resize Images Using AppleScript
  5. Rearranging any OS X menubar and login items