Hi,
I'm trying to understand how to import/include external librairies in a Javascript Model Addin based on the MyDemoAddin example in EAExample project.
It call calls objects defined in "Utilities" EA classes e.g. JSxml. In the TestXML method, the following line creates an object: var doc = new JSxml();
How does the MyDemoAddin know the other Utilities classes? I can't test the above method as it doesn't seem to be called from an addin menu. I wonder if it's simply managed with the dependency links to the Utilities classes.
Opening the JSxml class code (right click > Features > Edit Internal Code), I can see an "Imports" item in the tree structure before the list of methods. The class seems to include an external library but I can't figure how this is achieve.