Answered
FrameMaker ExtendScript: Finding a list of user-defined objects
I have a bunch of scripts in my startup folder and each one creates an Object that contains its constants and functions. For example, a script may have:
// Create an object.
var CP = CP || {};
// Add a constant to the object.
CP.PT = 65536;
// Add a method to the object.
CP.applyPgfFmt = function (pgf, name, doc) {
// Method code here...
};
My question: Is there a way to get a current list of these objects from ExtendScript while FrameMaker is running? Thank you very much. -Rick

