Skip to content

Instantly share code, notes, and snippets.

@robertobrambila
Last active April 13, 2024 10:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertobrambila/f79936459b4cfa9d61f378a507298474 to your computer and use it in GitHub Desktop.
Save robertobrambila/f79936459b4cfa9d61f378a507298474 to your computer and use it in GitHub Desktop.
Launch New TouchDesigner Instance On Mac
(*
INFO
AppleScript application to launch a new instance of TouchDesigner.
- Supports dropping a project file onto the app icon to launch a new instance with that file.
INSTALL
1 Set the correct path to your TD install in lines 16 and 20 below.
2 Copy this script into a new Script Editor document.
3 Save as Application.
Tested on macOS Mojave 10.14.1 only
*)
on open inputfile
do shell script "open -n /Applications/TouchDesigner099.app " & quoted form of POSIX path of inputfile
end open
on run
do shell script "open -n /Applications/TouchDesigner099.app"
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment