I'm trying to better integrate TVPaint into our production pipeline by executing george commands and scripts from the commandline.
This works well on Windows.
Code: Select all
"C:\Program Files\TVPaint Developpement\TVPaint Animation 11.5 Pro (64bits)\TVPaint Animation 11.5 Pro (64bits).exe" "cmd=[tv_warn 'Message1'][tv_warn 'message2']"
For MacOS, I've tried the following commands:
Code: Select all
open -a "/Applications/TVPaint Animation 11.5 Pro.app" --args "cmd=tv_warn Message1"
Code: Select all
open -n -a "/Applications/TVPaint Animation 11.5 Pro.app" --args "cmd=tv_warn Message1"
Am I missing some trick here? Is the --args only functional when launching new processes on MacOS? Any solutions to this?