Script for search in keywords
I'm totally new on Bridge and i'm not able to understad how to solve a problem or where i can search for understand how to solve by myself.
The matter is related to the keywords.
I need to export in a csv file the information stored in bridge and i'm able to do with this script founded here in another post (thanks!)
https://www.ps-scripts.com/viewtopic.php?f=72&t=24358&sid=6529114a378b6e37ff888bf74ba105cf
I've added some tag keyword to the image file for categorize it, for example family name and category.
ex
Family name (tag name)
- Name1
- Name2
.....
Category (tag name)
- Category1
- Category2
if i run this script i have a field with inside the comma separated values of the above tag for example Name1;Category1 grabbed from this part of the script
var Keywords = md.read("http://ns.adobe.com/photoshop/1.0/","Keywords").toString().replace(/,/g,';');
if(Keywords == undefined) Keywords ='';
Line += csvtab + Keywords;
}
How can add also the tag name for have something like this Family name:Name1; Category:Category1 in this field of the exported csv file?
Not just the value but also the tag name where this value is inside. I need a way for search for every listed value in this fields keywords for find which is its related tag. Every tag value has a unique value.
Thanks for your time and for your help!
