Update: SpawnEclipse

I’ve put the code for the AppleScript mentioned in my previous post up on github ( here ). I also added a rakefile that will compile the script as well as drop it in your applications folder if you’d like.

Eclipse Spawning AppleScript

AppleScript droplet to spawn multiple instances of Eclipse on Mac OS X. Just drop Eclipse.app file onto the droplet. (WordPress code formatting FAIL, they don’t support AppleScript)


on open eclipse_file
	set eclipse_file_path to POSIX path of eclipse_file
	do shell script quoted form of eclipse_file_path & "/Contents/MacOS/eclipse &"
end open