I am looking for some apple script that would tell Xcode to launch the current target.
I would like to automate Xcode from textmate to provide "Launch in the simulator" and "Launch on the device."
This is how much I got:
tell application "Xcode"
set myWorkspace to active workspace document
set myProject to the active project document of myWorkspace
...
end tell
source
share