Resizing an object to adapt to another object proportionally. How?

Hi, thanks much for reading! Long user Illustrator but I realized that I don't know how to do something very basic. I want to resize a group of objects to adapt to another object, without using the units of pixels or cm (all the vectors/parent). Here is a short animation showing what I want to do [click the first image to see animation]

illustrator_resize_adobe_forum2.gif

As you can see, it is impossible to say when you have reached the correct place, because it is not in line with the other object when you use the resize tool.

Illustrator_Resize.jpg

Jacob Bugge wrote:

...

(2) select the object to scale, set up the scale tool, click on the upper left corner to maintain, and then drag the lower right up to him, commented to show the way, and then the Smart Guides will tell cross when you are there, on the right of the context object path segment.

...

Ah ha, so, the Smart Guides like now Shift!  Because now with Shift will remain not the point to be broken under the cursor, and it won't work. I guess they have developed smart guides to work without using all the other constraints. It also works if you drag right to the edge and after the intersection with her along the edge where it intersect with the diagonal of the object to scale - it may be preferable for the amounts small scale where the smart guides label hiding the diagonal line. And I guess that the eye may be good enough for most cases.

Also, when I tried it it did not for me, because in the Smart Guide preferences section transform tools were not verified. Maybe it's my settings, but I can never remember to turn it off, it can be turned off by default.

Good tip, Jacob! Thank you

Tags: Illustrator

Similar Questions

  • Opens a file someone else you want to resize an object, it is larger that the artboard, how can I get rid of the artboard

    Opens a file someone else you want to resize an object, it is larger that the artboard, how can I get rid of the artboard

    Marvin,

    You can view > hide the work plan, but why not just put to adapt to what you want?

    You can do this in the file > format Document, or with the tool of workplan according to version.

  • I can't resize any object inside a tab control and control of the tab itself

    Hi all

    Since this morning I noticed that I can't always resize the object placed inside a tab control or the control tab itself.

    I have a few objects (controls, indicators, etc.) outside of the tab control, and they are resizable (I can see the dark blue squares and I am able to adjust the object); Instead, any object inside the tab control is still not resizable (when I select the dark blue boxes are not visible and I can't access the properties of the object by clicking with the right button of the mouse over it). If I have access to the properties of the object to the block diagram, the appearance of her-> frame size is gray and I can't change the size fields.

    It seems that something was changed when I try to adjust the minimum window size and appearance of windows in the proposals of VI, but I restore the previous values...

    How can I solve this problem?

    Sure, tab control is not locked.

    If the tab control is locked that resize is not possible

    Lucast85 wrote:

    Hi all

    Since this morning I noticed that I can't always resize the object placed inside a tab control or the control tab itself.

    I have a few objects (controls, indicators, etc.) outside of the tab control, and they are resizable (I can see the dark blue squares and I am able to adjust the object); Instead, any object inside the tab control is still not resizable (when I select the dark blue boxes are not visible and I can't access the properties of the object by clicking with the right button of the mouse over it). If I have access to the properties of the object to the block diagram, the appearance of her-> frame size is gray and I can't change the size fields.

    It seems that something was changed when I try to adjust the minimum window size and appearance of windows in the proposals of VI, but I restore the previous values...

    How can I solve this problem?

  • Resize an object: ALT + CMD + SHIFT does more work in CC15 mac?

    Hello

    Before, in CC14, when I wanted to resize an object or a group of objects by keeping its proportions, I simply used the keys CMD + ALT + SHIFT while I resize the object with one of their corner. (with my mouse)...

    Now, I've just updated to CC15 and this function no longer works?

    I have to configure something in preferences to retrieve this basic function?

    Thx for your help! I lose a lot of time without this basic function...

    It is almost always caused by third-party software that you are running. A common problem are extensions of browser that are striking strikes. Restart your computer and run InDesign before any other program, and it will probably work fine.

    If it does not create a new user on your computer and run InDesign from the new user.

  • Positioned on a Macbook Pro, the handles to resize the objects are missing?

    Positioned on a Macbook Pro, the handles to resize the objects are missing?

    With the move tool selected, you have to display controls to turn checked in the options toolbar?

  • How to resize an object and show on stage

    Im trying to resize a simple object according to what dimensions I set, but it does not work.

    so now the stageHeight and width is 600 x 600 and it still does not work.

    And how do I resize the object immediately when the SFW load (so early, it will be 3 times bigger)

    I have a MainClass with this code

                            public var  rescaleRatio:Number = 1;
                        public var _element1:CreateRow_Col
    
                        public function MainClass_Test() {
                        addEventListener(Event.ADDED, init);
                        _element1 = new CreateRow_Col(rescaleRatio)
                        addChild(_element1)
                        }
    
                        public function init(e:Event):void{
                                   stage.scaleMode = StageScaleMode.NO_SCALE;
                                     stage.align = StageAlign.TOP_LEFT;
                                     stage.addEventListener(Event.RESIZE, setUpScreen);
                        }
    
    
                        public function setUpScreen(ev:Event):void{
                                  stage.removeEventListener(Event.RESIZE, setUpScreen);
                                  if(stage.stageHeight > 500){  
                                            rescaleRatio = 3;  
                                  }else 
                                            rescaleRatio = 5;  
    
                        }
    
    

    and the CreateRow_Col class has this

    public class CreateRow_Col extends Sprite {
    
                        public var theAppliedScale:Number;
                        public var myObject:BG = new BG()
    
                        public function CreateRow_Col(reScalling:Number) {
                                  theAppliedScale = reScalling;
                                  addEventListener(Event.ADDED_TO_STAGE, zzz);
                        }
    
    
                        private function zzz(e:Event):void {
                                  removeEventListener(Event.ADDED_TO_STAGE, zzz);
                                  myObject.scaleX = myObject.scaleY = theAppliedScale
                                  addChild(myObject)
                        }
    

    Copy the following code and paste it into your document class:

    package {}

    import flash.display.MovieClip;

    import flash.events.Event;

    SerializableAttribute public class MainClass_Test extends MovieClip {}

                            public var  rescaleRatio:Number = 1;
                        public var _element1:CreateRow_Col

    public function MainClass_Test() {
                        addEventListener(Event.ADDED, init);
                     
                        }

    public function init(e:Event):void{
                                   stage.scaleMode = StageScaleMode.NO_SCALE;
                                     stage.align = StageAlign.TOP_LEFT;
                                     stage.addEventListener(Event.RESIZE, setUpScreen);
    setUpScreen(null);
                         }

    public function setUpScreen(ev:Event):void{
                                  if(stage.stageHeight > 500){ 
                                            rescaleRatio = 3; 
                                  }else
                                            rescaleRatio = 5;

    }

     if(!_element1){ _element1 = new CreateRow_Col(rescaleRatio);                    addChild(_element1)} else {_element1.zzz(null);  //<-make zzz() public in your other class.}
    

    }

    }

    }

  • How to resize the object + text lighting

    Hello

    1 lately, I can't resize an object.

    The surrounding border of the object is with filled rectanglers and

    not with rectangler hollow. So, I can't resize objects - how can I solve this problem?

    2. when I try to mark the text, there score perfectly but I do not see the location eventhough I choose what he.

    How can I mark the text and display the marked text (marked selected text)

    Kind regards

    Koko Fiko

    Koko Fiko,

    You can open the view drop-down list and check out the edges and Bounding Box (both must hide, indicating the possible action, implying that are displayed).

    According the description I'm not sure who can apply.

  • How to resize an object?  CS4

    When I use the scale tool, it is not scale proportionally (relatively).  The object becomes larger or longer, etc.

    When I hold down the SHIFT key to make, it does not at all help.  What is the secret of a scaling object proportionally?

    Thank you?

    In fact, you said "scaling tool", I did not notice that I'm sorry, the method I would use (and described) is using the standard black selection arrow and the object's corner points.

  • "message from website - object error_ - how we work around this problem or turn it off?

    'the Web site message' - (object error) - how we work around this or turn it off?

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-system/how-do-i-fix-object-error-message/5c0e66dc-50F2-4d82-BE4C-bedc5136df19

    Please read this thread.

  • Huawei mobile adapter unplugged network cable. How to connect

    Huawei mobile adapter unplugged network cable. How to connect?

    You can just X that out or let it go on its own, doesn't mean that you are not yet connected.

    You press Connect on the popup of the Application.

  • When I try to scan with my CanoScan N640P ex scanner I receive a message indicating the Port to the printer that is used by another device. How can I work around this problem?

    When I try to scan with my CanoScan N640P ex scanner I receive a message indicating the Port to the printer that is used by another device.  How can I work around this problem?

    Hi ejp70,

    1. did you of recent changes on the computer?

    2. to when was the last time the scanner was working fine?

    3. you have any other printer\scanner connected to the computer?

    If you have any other printer\scanner connected to the computer, disconnect them and check if it works.

    I suggest that you uninstall and reinstall the scanner to the computer, also make sure that you install the latest drivers for scanner on Canon website.

  • I purchased Web Standard in 2009. I want to install it on my current computer. I want to delete any license that I have on another computer. How should I proceed?

    I purchased Web Standard in 2009. I want to install it on my current computer. I want to delete any license that I have on another computer. How should I proceed?

    on any computer that has installed, open the program > click Help > deactivate. If this is not possible and you see an account activation error when trying to install on your new computer, contact support to adobe for hourly pst by clicking here and, when available, click on "still need help", https://helpx.adobe.com/contact.html , and request a number of activations reset.

    install on your new computer using your serial number and installation files.

    Available downloadable Setup files:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • I have customized a widget and want to reuse on another page. How save, copy or reproduce them? With the help of the iMac and Muse 2015

    I have customized a widget and want to reuse on another page. How save, copy or reproduce them? With the help of the iMac and Muse 2015

    You can just copy/paste the enchilada itself on another page, pretty easy!

    If you want to reuse more often, you can open the library or libraries CC , to store and later hanging out once again. Note: for the creation of an article in the 'old' library, you must select the element on the page and click on the new icon in the " library " window To create an element of CC libraries , you can simply drag something in and out of the window libraries CC .

  • I have lightroom 6 is installed on a computer and you want to move to another computer. How can I disable it so that Adobe recognizes the validity of the new installation?

    I have lightroom 6 is installed on a computer and you want to move to another computer. How can I disable it so that Adobe recognizes the validity of the new installation?

    Serial number and activation support (non - CC) https://forums.adobe.com/thread/2041990 to adjust the number of activations

    Cloud

    Remove the license on a computer http://forums.adobe.com/thread/1442423?tstart=0 can help

    -read http://helpx.adobe.com/x-productkb/policy-pricing/error-maxium-acitvation-exceeded.html

    -or https://helpx.adobe.com/x-productkb/policy-pricing/activate-deactivate-products.html

  • My laptop is dead where Acrobat Pro XI has been installed so that I will reinstall on another computer.  How can I make my active serial number again?

    My laptop is dead where Acrobat Pro XI has been installed so that I will reinstall on another computer.  How can I make my active serial number again?

    Hello

    Please download Acrobat Pro XI from here: Download Adobe Acrobat products. Standard, Pro | DC, XI, X

    After downloading install it and on request provide the serial number for the XI and the product will be active.

    If in case it gives you an error with activation please Contact Customer Care.

    Thank you

    Abhishek

Maybe you are looking for