LoginSignup
17
7

More than 5 years have passed since last update.

Macで TouchDesigner を複数開く方法

Last updated at Posted at 2018-06-01

ターミナルでこれを打つだけ

open -n /Applications/TouchDesigner099.app
open -n /Applications/TouchDesigner099.app /User/name/Document/myProject.toe

というように開きたいファイルを指定して開くことも可能


複数開きたいときに毎回この記事見て、Terminal開いて打ち込むのは面倒なので、もっと簡単にショートカットを作ってしまいましょう。

Macに標準で入っているAutomatorを使用していきます

種類をアプリケーションにし、新規で作成します
 2018-11-22 0.10.57.png

検索でシェル~と打ち込みシェルスクリプトを実行を画面右側にドラッグ&ドロップします
e797a77de9977febac7ac5fa15ec369f.gif

入力の引き渡し方法を引数としてに変更し、以下のスクリプトを打ち込みます
 2018-11-22 0.37.38.png

if ["$@" -eq ""]
then
    open -n /Applications/TouchDesigner099.app/
else
    open -n /Applications/TouchDesigner099.app/ "$@"
fi

以上の手順が完了したら、名前をつけて保存します。
今回はデスクトップにtouch.appという名前で保存しました。

まずtouch.appをダブルクリックで開くと新規でTouchDesignerが起動します
2018-11-22 0.26.31.gif

次に、touch.appにtoeファイルをドラッグ&ドロップします
2018-11-22 0.27.27.gif
そうするとそのファイルを新しく開くことができます。

これでMacでも何個もTouchDesignerを開いて、サンプル見ながらとかの開発ができますね!

17
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
7