Skip to main content
October 3, 2006
Question

Change the label color of selected thumbail

  • October 3, 2006
  • 2 replies
  • 648 views
Script which is just changing the the color of the lable of selected thumbnail(s) (eg. from red to green)?

regards

Erkki
This topic has been closed for replies.

2 replies

October 5, 2006
Markus,

It works!
Thank you very much!

Erkki
Participating Frequently
October 5, 2006
Hi Erkki,

this should work:

var sels = app.document.selections;
for (var i = 0; i < sels.length; i++){
var thumb = sels;
var md = thumb.metadata
md.namespace = "http://ns.adobe.com/xap/1.0/";
md.Label = "Green";
}

Markus