Getting Currently Used Morphs
Is there a means to get the morph path of all morphs currently used or just a list of all the items in the "Currently Used" list in an figure properties? I need this for an animation tool to export only the morphs being used for an animation.

Comments
This could probably be adapted to do that http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/metadata/list_products_used/start
For reference :
(function(oNode){ var helper = new DzSceneHelper(); function GetCurrentlyUsedMorphs() { var morphs = []; var props = helper.getPropertiesOnNode(oNode); for (const prop of props) // DzProperty { if (helper.isNodeProperty(prop)) // Skip controllers continue; if (prop.getValue() != 0) // We have a morph in use morphs.push(prop.getOwner()); // For returning a DzMorph } return morphs; } var inUse = GetCurrentlyUsedMorphs(); })(Scene.getPrimarySelection());