Question
Comparing array values in loop
Using ExtendScript to assign Tool Diameter values to paths via Graphics styles ...
var toolDiameters = [1, 3, 5]; //number value in pts
var scope = idoc.selection;
for (var t=0; t < toolDiameters.length; t++){
if (scope[i].strokeWidth == toolDiameters[t]){
The above works but now I am looking to validate the oposite ... strokeWidth != toolDiameter[t]
Thanks a bunch ...
