05-28-2025, 07:55 AM
Hi iiey,
The real problem is that when you launch the Nik plugin on MacOs, you go straight back to the script (unlike on Windows).
So I tested this solution:
And it seems to work for me. If anyone can test on a Mac...
The real problem is that when you launch the Nik plugin on MacOs, you go straight back to the script (unlike on Windows).
So I tested this solution:
Code:
# Run the external program
if sys.platform == "darwin":
prog_caller = ["open", "--wait-app", "-a"] #"--wait-app" blocks until the used applications are closed
And it seems to work for me. If anyone can test on a Mac...
