Nuke スクリプトを Applescript アプリケーションにドロップしてから、Nuke スクリプトがターミナルでレンダリングを開始できるようにしたいと考えています。
スクリプトは、ドロップされたアイテムのファイル パスを取得し、それを「nuke -xi」と共にターミナル ウィンドウに貼り付けて、Return キーを押す必要があります。これまでのところ、私は..
on open dropped_item
get the POSIX path of dropped_item
と...
tell application "Terminal"
if not (exists window 1) then reopen
activate
end tell
どんなアイデアでも大歓迎です。