Answered
How to remove swatches color in java script
Dear Tpk & Friends
I would like the script to Delete the swatches in the below:
PositiveOvertracked (100,15,100,0)
NegativeOvertracked (15,100,100,0)
Is this possible?
Thanks!
Dear Tpk & Friends
I would like the script to Delete the swatches in the below:
PositiveOvertracked (100,15,100,0)
NegativeOvertracked (15,100,100,0)
Is this possible?
Thanks!
use the below simple and straightforward code. It will replace with "Black" color
mycolor = app.activeDocument.colors.item("PositiveOvertracked")
mycolor1 = app.activeDocument.colors.item("NegativeOvertracked")
mycolor.remove();
mycolor1.remove();
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.