Answered
Which attribute defines the transparency of an object?
HI, Which attribute defines the transparency of an object? I want to find out from a large number of objects that use transparency...
HI, Which attribute defines the transparency of an object? I want to find out from a large number of objects that use transparency...
Which objects?
PathItems?
In Groups or CompoundPaths Or in Selections or in Layers/Sublayers/Document?
Fill color opacity? Or Stroke color opacity? Or Opacity in multiple colors/strokes?
In Gradients?
Unfortunately, not everything can be accessed with scripting!
For the beginning:
// select (only) one pathItem before running this snippet
var aSel = app.activeDocument.selection[0];
if (aSel.typename == "PathItem" && aSel.opacity < 100) alert(aSel.opacity);Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.