Trying to make the simple button that sets the 'Description' field in the metadata panel from text in the clipboard.
Having trouble retrieving and setting metadata - Document properties - Description
for an image file using jscript.
var file = source.selected(0);
var description = file.metadata.image.desc;
Log(description);
gives
how is this metadata field retrieved and set please.
The problem is if there is a double quote in the clipboard text.
Any work around for this, without parsing the text first and removing or changing all double quotes ?