I am developing an extension for InDesign and I would like to store the jsx file on a server. This would allow me to update the plugin if I change something in the jsx without the user having to re-download the extension. I tried to directly do an include in the jsx that is mentioned in the manifest to try to point to the real jsx like this:
local-index.jsx :
//@include "https://server-name/adobe/addins/extendscript/server-index.jsx"
- (local-index would only serve as a bridge between JavaScript and ExtendScript)
- (server-index would contain all the methods I use on the JavaScript side with CSInterface.evalScript();)
It doesn't work and I couldn't find any information on the web. Is it possible or does the jsx file have to be local ?
Thanks in advance !