How do you make javascript objects/functions available across EFS scripts like you do with MAStudy and MACDStudy?
I've created several complex javascript objects that I would like to use in my scripts the same way your built-in objects are used. For example,
var myObj = new MyObj();
Right now I'm placing the entire object definition in each script above where the object is instantiated but this is becoming a maintenance nightmare. Whenever I make changes to an object definition in one script, I've got to make the same change in all the other scripts that use the same object.
Thanks,
Kent
I've created several complex javascript objects that I would like to use in my scripts the same way your built-in objects are used. For example,
var myObj = new MyObj();
Right now I'm placing the entire object definition in each script above where the object is instantiated but this is becoming a maintenance nightmare. Whenever I make changes to an object definition in one script, I've got to make the same change in all the other scripts that use the same object.
Thanks,
Kent
Comment