Copy link to clipboard
Copied
How to transform (scale 50%) all the objects.
Note: is it possible without loop all the page items?
Copy link to clipboard
Copied
Roopa,
Here you go. Just group every item in your document and run this script. no loops.
#target Illustrator
var docRef = app.activeDocument;
var group = docRef.groupItems[0];
group.resize(
50.0, //this is a percentage of current width
50.0, //this is a percentage of current height
true, // changePositions
true, // changeFillPatterns
true, // changeFillGradients
true, // changeStrokePattern
);
Copy link to clipboard
Copied
did this solve your problem, Roopa?
Find more inspiration, events, and resources on the new Adobe Community
Explore Now