I'm developing a JavaScript plugin for Indesign CS5 and I would like to be capable of configuring it from an external file (an XML one for example). Is-it possible? I haven't found anything on Adobe website or web searches...
Thanks in advance
|
I'm developing a JavaScript plugin for Indesign CS5 and I would like to be capable of configuring it from an external file (an XML one for example). Is-it possible? I haven't found anything on Adobe website or web searches... Thanks in advance
| |||
|
feedback
|
|
As a technicality, when trying to interact with InDesign via JavaScript, it's not referred to as a plugin. An InDesign plugin is developed in c++, compiled to a .InDesignPlugin file and loaded into InDesign at startup time. On to the actual question, assuming you are refferring to an InDesign Script (.jsx format): Yes, it's possible. The most basic way is to do it using the base JavaScript File class. Example:
However, with this way it takes quite a bit of work to parse an xml config file. For this purpose you would be better off using a library that someone else made. jQuery includes functionality for this, or you could go for the more specialized library | |||
|
feedback
|