Align to guides when resizing

Simple question and could not find a clear answer with a search. Is it possible to align to guides when resizing objects proportionately (using shift-make slide)?

Thank you!

Charlie

So I'm using Ctrl + Shift and drag the selection tool. I never use the scale tool.

Tags: InDesign

Similar Questions

  • Centering with Align tool guides

    I used to be able to focus a Guide immediately by creating a Guide and then (with unlocked tool of selection chosen and Guides) used the Align attribute to center the artboard option in the toolbar above.

    For some reason, it launches now the Guide all the way to the artboard and in the Gray man no of land.  Both Vertical and Horizontal.

    Is this a bug that everyone has noticed?

    Thanks in advance.

    TAK

    This is a very old bug. It is only bad when you try to align the guides when the option use an extract of the limits is turned on.

    Then, before aligning the guides with the alignment pallet disable this option in general preferences or through the drop down palette alignment.

  • Muse cut the part left my site when resizing the window of the browser for anything whether it is less than the width of the page

    When you use centering nychtemerales, Muse cut the left side of my site when re the sizing of the window of the browser for anything less than the width of the page, this also happens on mobile devices.  How can I keep the page focused but have content basically left stop when resizing or viewing on a mobile screen? I don't want the edge of the page to disappear on smaller screens and when you use a smaller window. I do not want to resize the entire site at a lower resolution. Thanks in advancearbubaproblem.jpg

    If the left is cut, then you have designed offshore from the left of the page mode Design of Muse. The blue guides indicate the edge of the page and a margin guide on the page. Rule zero is the left edge of the page.

    The page is not admissible it will focus as long that the browser is wider than the page. Then, she left aligned (on point zero on the sovereign in design mode).

  • How to align the Guides?

    (Mac OSX, Illustrator CS5)

    When you move objects around the editing table, what is the voodoo magic trick to get Illustrator to align the guides? I can't find a setting for this anywhere. Surely, you can align pins with Illustrator, can't you?

    Thank you-

    Turn on the guides. And set the preferences for them (check 'tools of transformation')

    Illustrator aligns with the position of the cursor

  • Strip tip that displays the coordinates while moving (delta) and size when resizing went

    I've been using LabVIEW since version 3.  I used to use it full time, but only part-time and the.

    I have a Win XP Professional computer running LabVIEW 7Express, and I have a Win 7 Home Premium computer running Labview 2013.

    I have always used and relied on small pop - up (Advanced band, ToolTips) which indicates the coordinates when you move an object on the screen: delta 4, 19 for example; and shows the new size when resizing: 4, 19 for example.  It works my Win XP Professional LabVIEW 7Express machine but NOT on my Win 7 Home Premium LabVIEW 2013 machine (and I need to work on this machine).

    I think there are 3 places to search for:

    1) LabVIEW, tools, Options, block: see the tip terminal strips - "this option is enabled on both machines.

    (2) LabVIEW.ini - "I can find similar entries on both machines.

    3) strips of MS Windows Advanced treatment - "not sure about it, Win 7 Home Premium is not easy to use with this and web sites I've found seem to point to key in regedit which seem not to be there.

    Thanks for any help!

    Nevermind, I figured it.

    My Win 7 machine is dual-boot.  I have a SSD LabVIEW 2013, on the other hand I have LabVIEW 2012.  I looked on the side of 2012.  I noticed that there are 3 places that you can treat with strips of tip under LabVIEW Options: front panel, block diagram AND UNDER environment.  Who has been disabled on my side LabVIEW 2013.  I fixed it.

    I think I have disabled all 3 places when I was trying to stop one of the most annoying things in LabVIEW.  When interacting with case and sequence stacked Structures, that terrible pop-up ads (Advanced band) would appear and cover the value of the Structures or Structures of stacked sequence case who I was interacting with blocking my view.

  • CellRenderer attracts more when resizing to a list

    I can't understand why the box drawn in my CellRenderer class shoot each other when resizing to height of the list. Here's the example code to demonstrate. Click resize.

    package
    {
        import flash.display.Sprite;
        import flash.events.MouseEvent;
    
        import qnx.fuse.ui.buttons.LabelButton;
        import qnx.fuse.ui.listClasses.List;
        import qnx.ui.data.DataProvider;
    
        [SWF(height="600", width="1024", frameRate="30", BackgroundColor="#000000")]
        public class test3 extends Sprite
        {
            private var l:List = new List();
            public function test3()
            {
                var dp:DataProvider = new DataProvider();
                for (var i:int = 0;i<=10;i++)
                {
                    dp.addItem({number:i});
                }
                l.dataProvider = dp;
                l.setPosition(10,50);
                l.width = 1004;
                l.height = 500;
                l.cellRenderer = test3CellRenderer;
                addChild(l);
    
                var b:LabelButton = new LabelButton();
                b.label = "Resize List";
                b.addEventListener(MouseEvent.CLICK, but_click);
                addChild(b);
            }
            private function but_click(e:MouseEvent):void
            {
                if (l.height != 200)
                    l.height = 200;
                else
                    l.height = 500;
            }
        }
    }
    

    and my CellRenderer class:

    package
    {
        import flash.display.Sprite;
    
        import qnx.fuse.ui.listClasses.AlternatingCellRenderer;
        import qnx.fuse.ui.text.Label;
    
        public class test3CellRenderer extends AlternatingCellRenderer
        {
            private var label1:Label;
    
            public function test3CellRenderer()
            {
                super();
            }
    
            override protected function init():void
            {
                label1 = new Label();
                label1.width = 200;
                addChild( label1 );
                super.init();
            }
    
            override public function set data( data:Object ):void
            {
                super.data = data;
    
                if (data != null)
                {
                    label1.text = data.number;
                    var _color:uint;
                    if(data.number == 0 || data.number == 2 || data.number== 4 || data.number ==  6 || data.number== 8)
                        _color = 0x068000;
                    else
                    _color = 0xC40000;
                    var s:Sprite = new Sprite();
                    s.graphics.beginFill(_color);
                    s.graphics.drawRect(200, 1, 100, 48);
                    s.alpha = .5;
                    addChild(s);
                }
            }
        }
    }
    

    You must add elements in the function onAdded() Overrides and remove them to the function onRemoved() override.

    //////////////////////////////////////////////////////////////////
        override protected function onAdded():void
        {
            super.onAdded();
            this.addChild( this.label1 );
        }
    
            ////////////////////////////////////////////////////////////////
        override protected function onRemoved():void
        {
            super.onRemoved();
            this.removeChild( this.label1 );
        }
    
  • 2015.1 Photoshop crashes when resizing,

    The original Photoshop 2015 would break when I did any resizing in the "Resize Image" dialog. He did the same thing with the new Photoshop 2015.1

    2014 Photoshop works very well with no crash when resizing. Someone at - he heard of this problem?

    Please open Photoshop > preferences > Performance

    Uncheck the 'use graphics processor '.

    Check if it still crashes

    ~ Assani

  • Unable to see the alignment grid lines when you move objects in Edit

    Hello, for some reason that I have more alignment grid-lines when moving objects and does not easily move, they prefer to stay in place until the arrows have been moved, then the object passes to a place.  It is very difficult to align the object.

    Unfortunately, I tried to line up on the grid without any positive result.  He was not selected.  I selected (enabled) no diff, once again, not diff

    Acrobat 2015.006.30060 version

    Used on a MAC Pro: operating system is El Capitan v10.11 <-I wonder if this is the problem.  Apple has become the new Microsoft allowing its users to test the full implementations of their operating system.  I've updated two days ago.  BIG mistake as interactions with other products (ex: Outlook) have also been compromised, but that's not the point.

    I hope that it is however a configuration somewhere in the HUGE list of config for this application.  But I still saw nothing.

    Thank you for looking into this.

    Robert

    p.s. I hope this is the correct Adobe community. If this isn't the case, please tell me which is correct as the communities seem to be large enough.

    Hi Robo9er,

    Thanks for the report. Yes, that's the correct Adobe community to address the issue you mentioned.

    Have you updated to the latest version: if not, please goto 'Help'-> Check for Updates.

    Otherwise, you can download the latest update here: Adobe - Acrobat: for Macintosh: update Adobe Acrobat Pro (classic track) DC - all languages

    The latest version is: 2015.006.30094

    This problem should be solved with the latest version.

    Kind regards.

  • Installation of image do not cross when resizing

    I'm working on a carousel, but it doesn't sit right when resizing. Why would he do that? And how can I solve this problem?

    picture not going across.PNG

    It actually uses the class for the img. I fixed it doing it:

    . Carousel img {min-height: 500px; width: 100% ;}}

  • How to resize a textFrame, when resizing as its parent (a groupitem)?

    I am trying to find the smallest textframe within a group and then match that textframe font size to the minimum size allowed for printing. Everything works, except that I can't understand how to resize the textframe when resizing as its parent, the group.

    #target illustrator

    app.activeDocument = docRef;

    gpRef = docRef.groupItems [0];

    var gpHeight = gpRef.height;

    It's printing allowed minimum font size

    var minFntSize = 18;

    var garbLay;

    var txtFrmCount = gpRef.textFrames.length;

    var container = {};

    var i;

    put each prop textframe and height in json

    for (i = 0; i < txtFrmCount; i ++) {}

    container ["prop" + i] = {"gpTfHeight':gpRef.textFrames [i] .height / 72, 'gpTarget':gpRef.textFrames [i]"};

    }

    find the value prop textframe height min. I have the max in it too just in case I need it in the future

    var min = infinity;

    var max = - infinity;

    var x;

    for (x in container) {}

    If (container [x] ['gpTfHeight'] < min) {}

    min = container [x] ["gpTfHeight"];

    minTg = container [x] ["gpTarget"];

    }

    If (container [x] ['gpTfHeight'] > max) {}

    Max = container [x] ["gpTfHeight"];

    }

    }

    duplicate textframe, convert in way and get the actual height

    var txtFrmDup = minTg.duplicate ();

    txtFrmDup.position = [(minTg.position[0]-100), (minTg.position [1] - 100)];

    txtFrmDup.name = "garbage."

    var tOutline = txtFrmDup.createOutline ();

    tOutline.name = "garbage."

    var tLogHeight = Math.round (tOutline.height);

    garbLay = gpRef.groupItems.getByName ('garbage');

    This is the part where I need to convert it into percentage? tgSize is the size of the target and I thought I could get the different from the 2 and then use this amount to resize down...

    var tgSize = minFntSize - tLogHeight;

    var PERC = Math.round((tgSize/gpRef.height)*100);

    $.writeln (minFntSize);

    $.writeln (tLogHeight);

    $.writeln (tgSize);

    $.writeln (perc);

    resize gp so that font textframe min size meets minFntSize

    if(tLogHeight < minFntSize) {}

    gpRef.resize (perc, perc);

    $.writeln ('smaller');

    garbLay.remove ();

    } else if(tLogHeight > minFntSize) {}

    gpRef.resize (perc, perc);

    $.writeln ('bigger');

    garbLay.remove ();

    } else if(tLogHeight == minFntSize) {}

    $.writeln ('equal');

    }

    I do not know if I go about it the right way. Hoping a new set of eyes can take a look and see what I'm doing wrong or not done? Thank you!

    check this out, I changed it a bit

    // scale grouped text Frames to a minimum font size
    // http://forums.adobe.com/thread/1323065?tstart=0
    // carlos canto
    
    #target illustrator
    
    var docRef = app.activeDocument;
    var gpRef = docRef.groupItems[0];
    
    //this is the minimum print font size allowed
    var minFntSize = 18;
    
    var txtFrmCount = gpRef.textFrames.length;
    
    // make the first frame the one with the minimum font size
    var idx = 0;
    var minFrameFontSize = gpRef.textFrames[idx].textRange.characterAttributes.size;
    
    // see if the other frames have smaller font size than the first
    for(i = 1; i < txtFrmCount; i++) {
        var itext = gpRef.textFrames[i];
        var fontSize = itext.textRange.characterAttributes.size;
        if (fontSize		   
  • Dreamweaver CC has "internal error... when resizing of a vision" when asked to create a fluid grid presentation

    Excited for the scope of the fluid grid layout features, he had, I had creative cloud Dreamweaver SPECIFICALLY for this feature.

    Sign, download, installation went well held. Open Dreamweaver CC, create new flow layout grid, press OK, location name and desigante of the .css file and get the following error.

    "An internal error occurred when resizing to a view. (Cview::ResizeFrameBy) "OK

    I click OK and nothing happens. App freezes. No css, no file. Not nothing.

    Tried to reboot, reinstall, the different names and destinations for .css file. I'm Mac 10.8.2

    Literally, it's the first thing I did w / an app of the ACC, and I am unhappy and frustrated. Via forum or call customer service telephone offshore get less than ideal.

    (my apologies for the misspelling in the subject cannot edit it)

    You can try the steps mentioned on the thread: http://forums.adobe.com/message/5420680

    Fix checked:

    For all the Dreamweaver crashes on the opening of fluid grid pages, closing Documents, or opening files

    Please make sure that the default system fonts are activated all - especially Verdana

    On MAC -.

    Open the police BOOK from Applications

    Activate VERDANA font family

    -Thomas yannick

  • Problem when resizing the round objects

    Hello

    I have a problem with the downward revision round objects.

    In summary, here's the question:

    round_corner_problem.jpg

    As you can see when I reduce a cirle of size size B, upper side and left of the circle B are flat.

    Why this happens and how to avoid it? It is really frustraiting when working with small objects.

    See you soon.

    Howdy.

    The flats on the small circles is caused by anti-aliasing misalignment with the pixel grid when the circle is resized. You will most often see when resizing a shape with an odd number of pixels. You have one see below the center of the circle is forced off the pixel grid, and anti-aliasing is disabled.

    This is the actual size.

    What should do?

    Before you accept the processing, move the circle to the center point of the circle is on the pixel grid. Use the arrow key to move around. Experiment. Move the center of the circle at different outside the premises of the grid before accepting the transformation. You will see all kinds of permutations of anti-aliasing. Choose one that is symmetrical. The focus should be on the grid. Then smoothing should be symmetrical. When the transform is applied, anti-aliasing is cooked in, and you can move back the circle to its original position if you wish.

    Like Paulo and Noel have noted, the quality of the original circle antialiasing will notice when it is reduced to the size of the web icons. Any asymmetry in the original may be noticeable to a normal size, because it is only about one or two rows of pixels on the perimeter of the circle. A small percentage of assymetry on a circle of 300px. When the circle is reduced to 10 pixels, the asymmetry affects another one or two lines of pixels. And the circle goes PEAR because the assymmetry could be as much as 10%. My guess is that the OP is working with images that are a little unhinged to start.

    There is much more to this, but it might help.

    Peace,

    Lee

  • What DPI and the quality when resizing the photos to post-secondary studies for use in PRE?

    For use in first 7 Elements:

    When resizing my photos from digital camera in Photoshop for reduced 1000 x 750 sizes that you would recommend when panning and zoom, there are a few additional choices.

    Asked for the resolution in dpi.  Wouldn't be 600, 300, or less?

    The other thing is: convert files? The max quality JPEG or standard or what?

    I'm still a beginner at the first, then feel free to too technical!

    Thank you, Elizabeth.

    Well, my book has all the answers, if you are interested, Elisabet!

    PSD files are Photoshop files. Unlike most file formats, PSDs save their image data in an editable form, including layers and text. It also records these image lossless data - so that the files can be quite large.

    JPEG files were invented mainly for use on the internet, and their main advantage is their image data can be compressed, so that the file sizes are much smaller. (That's why your digital camera probably stores its photos in format JPEG.) But the compression does not come without a cost. If you reopen and re - save a JPEG file multiple times, you will begin finally to compromise the integrity of the image.

    With the photos that you want to use in a Premiere Elements, a JPEG file is probably fine. Quality is a good setting, and it's anything on a 7. (Probably you can compress your files even more, if you do not plan to re - open and re-save the file, but you probably don't have your file who are weak, unless you use online).

  • How can I get my guides to align the work plan using my align palette? Whenever I hit the button Align, the guide turns completely off the drawing surface.

    I'm not crazy, he used to work. I could use the palette line up to put my guides centered, right-aligned, left-aligned, etc. I started having this problem in CS5 when I hit the button Align and the guide would go completely out of the drawing surface. I thought it was just a bug and would leave with upgrade to CC. But I'm getting the same problem! So boring.

    It's an old bug that sting when you line up with the palette alignment guides while using an extract of the limits is selected.

    You can disable it in the General preferences or in the drop of the alignment pallet.

  • Illustrator does not resize / move item to a given pixel, return to position size / previous. And also when resize, reduce some element complex, it completely distorts the object.

    Hi guys. I'll have much declined of disorders I've done the last Illustrator update (17.) on my PC. Sometimes works, sometimes not. I think that it is a software bug.

    When I try to resize or move a shape or other element to a given pixel, he returned to the size or the previous position. It won't let me change if a pixel more or less than my desired. I took twice as much time to finish the work, make cuts.

    Moreover, when I resize an objetc, a logo for example, which consists of several elements for a smaller size, the object is completely undetermined. It does not keep the unit and the initial spacing between the elements.

    EXAMPLE 2_1.jpg

    EXAMPLE 2_2.jpg

    Actually,.

    In such cases, the first assumption is aligned to the pixel grid.

    You can select the entire document and untick finally align on the pixel grid in the Transform palette and uncheck also align new objects to the pixel grid in the options of the Launcher.

    You can avoid the types of documents with the default (RGB for the web and other) or change the default value for such documents.

    Apart from this, it may be time to move to an updated version or CC2014 (18.1.1).

    Using the CC Office management application, we can go to the gear icon at the top right and go from there.

Maybe you are looking for

  • Treo 600 screen does not turn off

    Usually my treo 600 stops automatically after 2 minutes, but at times it stays on and I can't turn it off by pressing the power button.  The only way I can turn it off is by doing a HotSync first. It's OK when I'm home with my computer, but can't whe

  • on the display screen

    I lost the ability to see the volume control on the display on my R60. I'd appreciate advice on how to restore this function.

  • What are the Windows Vista compatible CD labellers?

    Can you tell me what CD labellers I can get which are picked up by Microsoft and compatible with Windows Vista?

  • Jet Office HP 8600: post cards printing

    I CAN'T PRINT ON POSTCARDS.  I CAN PRINT ON EVERYTHING ELSE, BUT I can't GET THE POSTCARD to PRINT CORRECTLY

  • BBMaps - studs missing investment

    I wrote an application that calls BBMaps with the following code: //Carriage returns were inserted for readability //The real string is all one line. String locationDocument = " "; Invoke.invokeApplication(Invoke.APP_TYPE_MAPS, new MapsArguments(Maps