Answered
XMP : Remove a nod from InDesign metadata
Hello,
Can anyone tell me how to delete a node from the Indesign metadatas?
var XMPs = app.activeDocument.metadataPreferences;
var EspaceXMP = "http://ns.adobe.com/xap/1.0/";
var ContainerXMP = "TEST";
XMPs.deleteProperty(EspaceXMP,"TEST[1]"); //doesn't work (XMPs.deleteProperty is not a function)
XMPs.removeProperty(EspaceXMP,"TEST[1]"); //doesn't work (XMPs.deleteProperty is not a function)Thank you.
