Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Transform all the Objects

Community Beginner ,
Jan 05, 2015 Jan 05, 2015

How to transform (scale 50%) all the objects.

Note: is it possible without loop all the page items?

TOPICS
Scripting
368
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Jan 08, 2015 Jan 08, 2015

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

    );

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 09, 2015 Jan 09, 2015
LATEST

did this solve your problem, Roopa?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines