Question
Accessing sublevels of CreatorContactInfo
Hey everyone! I have recently begun Javascripting to import a huge batch of a tab-delimited spreadsheet file filled with metadata to place to thousands of images in Adobe Bridge. Now, here is my barrier:
CreatorContactInfo apparently has sublevels such as:
-CiAdrCtry
-CiEmailWork
-CiUrlWork
etc.
But I'm unable to access those metadata variables. Typically, you would like:
var m = t.metadata;
m.namespace = "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/";
m.CiAdrCtry = "USA";
I have already followed the bottom of page 114 of the Bridge JavaScript Reference on multivalued properties but that doesn't work for the following:
var m = t.metadata;
m.namespace = "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/";
var coolVar = m.CreatorContactInfo;
var another = coolVar["CreatorContactInfo/Iptc4xmpCore:CiAdrCity"];
If anyone was able to get around this, please do let me know!
John Vu
CreatorContactInfo apparently has sublevels such as:
-CiAdrCtry
-CiEmailWork
-CiUrlWork
etc.
But I'm unable to access those metadata variables. Typically, you would like:
var m = t.metadata;
m.namespace = "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/";
m.CiAdrCtry = "USA";
I have already followed the bottom of page 114 of the Bridge JavaScript Reference on multivalued properties but that doesn't work for the following:
var m = t.metadata;
m.namespace = "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/";
var coolVar = m.CreatorContactInfo;
var another = coolVar["CreatorContactInfo/Iptc4xmpCore:CiAdrCity"];
If anyone was able to get around this, please do let me know!
John Vu
