Reply To: Invert Clipping Path Script

#69519
rydesign
Member

Fond a script JonWare did for me a while ago and added some stuff. Now it applies the Photoshop Path how do I get it to invert the applied path?—

for (i=0; i<app.selection.length; i++)
{
try {
app.selection[i].images[0].clippingPath.appliedPathName = app.selection[i].images[0].clippingPath.photoshopPathNames[0];
app.selection[i].images[0].clippingPath.clippingType = ClippingPathType.PHOTOSHOP_PATH;
} catch (e)
{
// not interested if there is none
}
}

This article was last modified on July 15, 2014

Comments (0)

Loading comments...