Help with executing a script from a script on mac OS
Let me explain my situation. At my workplace, my coworker and I use Illustrator for printing purposes and I have written some scripts (.jsx) to make things easier. I use a windows computer and my coworker uses a mac. We have a network we use for sharing files between computers, so I thought creating a script to run the main script from the network would save lots of time in the event that I needed to make any changes going forward. I was successful when I made such a file for windows (shown below), but I've been having a lot of difficulty with making one for mac. I have tried different formats for the mac file path, but nothing I've tried has worked so far.
var scriptFile = new File("\\\\#.#.#.#\\Network Shared\\Illustrator Scripts\\Completed\\SetOverprint.jsx");
scriptFile.execute();
Any pointers to what I'm doing wrong are immensely appreciated.
