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

illustrator CC how to manually resize one object to match another

New Here ,
Apr 17, 2020 Apr 17, 2020

Copy link to clipboard

Copied

hi, i often want to manually resize one object to be the same height or width as another. in CS6, there was a "line" that would appear when drawing or resizing an object when it lined up with another nearby object. i can't seem to activate this now i'm in CC. how to do? tx!

TOPICS
Draw and design

Views

603

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Apr 17, 2020 Apr 17, 2020

Hi

That "line" is called Smart Guides. You can enable it from the View menu or with the keyboard shortcut of Cmd+U.

Votes

Translate

Translate
Adobe
Community Expert ,
Apr 17, 2020 Apr 17, 2020

Copy link to clipboard

Copied

Hi

That "line" is called Smart Guides. You can enable it from the View menu or with the keyboard shortcut of Cmd+U.

Votes

Translate

Translate

Report

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
New Here ,
Apr 17, 2020 Apr 17, 2020

Copy link to clipboard

Copied

thanks!

Votes

Translate

Translate

Report

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 ,
Apr 17, 2020 Apr 17, 2020

Copy link to clipboard

Copied

LATEST

You're welcome, Neuralized, happy to help! 

~ Jane

Votes

Translate

Translate

Report

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
LEGEND ,
Apr 17, 2020 Apr 17, 2020

Copy link to clipboard

Copied

If this is something you do regularly you could use this script to scale the top object to match the bottom object dimensions.

//by Ray Craighead
//Select 2 objects. Script will scale top object to match bottom object.

function scaleTopObject( ){
    var aDoc = app.activeDocument;
    var sel = aDoc.selection;
    var topObj = sel[0];
    var botObj = sel[1];
    topObj.width = botObj.width;
    topObj.height = botObj.height;
    }

if (selection.length == 2) {
  scaleTopObject( );
} else alert ("Select 2 object. Top object will scale to match bottom object.");

Here's a JSX file that can be placed in your "/Applications/Adobe Illustrator CC 2015.3/Presets.localized/en_US/Scripts" folder. After restarting Illustrator it will appear in "File>Scripts" menu.

 

https://www.dropbox.com/s/vlos0sb7d193r43/scaleTopObject.jsx?dl=0

 

Votes

Translate

Translate

Report

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