Keyboard shorcut to place an object at centre of the artboard

Is there any keyboard shortcut to place an object at the center of the artboard.

Or afzaljrc,
How about an action to do the above, if you wish to fit into the window?
If you select an object with the (normal) Selection Tool, then:
1) In the Window>Action palette flyout click New Action and Record,
2) Ctrl/Cmd+0,
3) Ctrl/Cmd+X+V,
4) Click the Stop Playing/Recording button,
5) DoubleClick the new action and give it a suitable name, and set a Function Key (working as a keyboard shortcut).
After that, you can select any object and have it moved to the centre of the Artboard, which is fit into the window, with the action, using the Function Key (or the Play Current Selecton button in the Action palette, with the action selected).
Or you may use the alternative action described in your other thread.

Similar Messages

  • How to see the object while moving on the artboard?

    hello everyone;
    maybe a silly question; how to see the object while moving on the artboard? i dont wanna see only the objects bounding box(outline of the object). i wanna see the object it self. thank you.

    What have they gone and messed up now?
    When I drag an object (with bounding boxes turned on), the object moves and the bounding box stays still until I stop dragging, upon which it snaps to the object’s new position.
    If I don’t have bounding boxes turned on (as I usually work), the object moves when dragged.
    If what Bedri says is right, they’ve gone and mended something that wasn’t busted.

  • Viewing objects that are off the artboard in a CS3 ai file

    would really like to know how i can save an .ai file from CS3 that allows me to view ALL the objects in it when placed into Indesign, not just whats on the artboard. (the ai file seems to auto crop itself when placed). the problem is solved if i save it as an eps instead, but ideally would like to work with ai files. it worked fine in CS. thanks! tim

    Try saving as PDF, but I Think you are limited o the bleed distance. Illustrator files (as of version 13) don't support bleed. Really. Yes, really. Really!

  • Grid and objects at angle from the artboard

    Hi there...
    My issue is that the grid, and any shapes (such as a simple rectangle) are at a slight angle to the artboard - see the picture to see what I mean...
    The artboard has horizontal and vertical sides but the grid is off at an angle. And as you can see, the white rectangle that I created is in line with the grid, which is out of line with the artboard.
    I'm sure there is a simple explanation but I can't find any reference to this in my web searches...
    Any assistance would be greatly appreciated!
    Thanks a lot...

    Hi there...
    My issue is that the grid, and any shapes (such as a simple rectangle) are at a slight angle to the artboard - see the picture to see what I mean...
    The artboard has horizontal and vertical sides but the grid is off at an angle. And as you can see, the white rectangle that I created is in line with the grid, which is out of line with the artboard.
    I'm sure there is a simple explanation but I can't find any reference to this in my web searches...
    Any assistance would be greatly appreciated!
    Thanks a lot...

  • Script for making an object the artboard size.

    I am looking for some help on trying to make an object the exact size of the artboard.  This is something I do on a daily basis for several different reasons and it would be very helpful if this can happen automatically for whatever size the artboard may be.  As I understand it the only way is with a script but I have no experience with making illustrator scripts, im definately no programmer.  I have set up quickkeys in the past to copy from the artboard inputs when you are on the artboard tool but these round to the nearest .01 and this is not accurate enough for what I am working with.  Also if I do this with multiple pages open illustrator is very slow to respond to the artboard tool.  If anyone has any idea where to start or has seen other such scripts I would greatly appreciate it.  Thank you.
    Below is a script that I saw on here that I believe may contain what I need but now knowing programming I have no idea where to start on editing.  All I need is the part where an object is placed on the artboard that is the exact same size as the artboard.  If anyone can advise on editing I would greatly apprecaite it.
    #target illustrator
    function main() {
         if (app.documents.length == 0) {
              alert('Open a document before running this script');
              return; // Stop script here no doc open…
         } else {
              var docRef = app.activeDocument;
              with (docRef) {
                   if (selection.length == 0) {
                        alert('No items are selected…');
                        return; // Stop script here with no selection…
                   if (selection.length > 1) {
                        alert('Too many items are selected…');
                        return; // Stop script here with selection Array…
                   } else {                   
                        var selVB = selection[0].visibleBounds;
                        var rectTop = selVB[1] + 36;
                        var rectLeft = selVB[0] - 36;
                        var rectWidth = (selVB[2] - selVB[0]) + 72;
                        var rectHeight = (selVB[1] - selVB[3]) + 72;              
                        selection[0].parent.name = 'CC';
                        selection[0].filled = false;
                        selection[0].stroked = true;
                        var ccColor = cmykColor(0, 100, 0, 0);              
                        var ccCol = spots.add()
                        ccCol.name = 'CC';
                        ccCol.color = ccColor;
                        ccCol.tint = 100;
                        ccCol.colorType = ColorModel.SPOT;
                        var cc = new SpotColor();
                        cc.spot = ccCol;                   
                        selection[0].strokeColor = cc;
                        selection[0].strokeWidth = 1;                   
                        var tcLayer = layers.add();
                        tcLayer.name = 'TC';
                        var padBox = pathItems.rectangle(rectTop, rectLeft, rectWidth, rectHeight, false);
                        padBox.stroked = false;
                        padBox.filled = true;
                        var tcColor = cmykColor(0, 100, 90, 0);         
                        var tcCol = spots.add()
                        tcCol.name = 'TC';
                        tcCol.color = tcColor;
                        tcCol.tint = 100;
                        tcCol.colorType = ColorModel.SPOT;
                        var tc = new SpotColor();
                        tc.spot = tcCol;
                        padBox.fillColor = tc;    
                        padBox.move(docRef, ElementPlacement.PLACEATEND);
                        artboards[0].artboardRect = (padBox.visibleBounds);
                        redraw();
                        rectWidth = (rectWidth-72)/72;
                        rectWidth = roundToDP(rectWidth,1);
                        rectHeight = (rectHeight-72)/72;
                        rectHeight = roundToDP(rectHeight,1);
                        var textString = rectWidth + ' x ' + rectHeight;
                        prompt('Copy Me', textString);
    main();
    function roundToDP(nbr, dP) {
         dpNbr = Math.round(nbr*Math.pow(10,dP))/Math.pow(10,dP);
         return dpNbr;
    function cmykColor(c, m, y, k) {
         var newCMYK = new CMYKColor();
         newCMYK.cyan = c;
         newCMYK.magenta = m;
         newCMYK.yellow = y;
         newCMYK.black = k;
         return newCMYK;

    Thanks to CarlosCanto for the original script, it was very a very helpful starting point to optimize one of our workflows. We customized it a bit to maintain the aspect ratio (just takes the greater of the width / height and scales proportionally to the artboard size), and also center up the object in the middle of the artboard once scaling is complete. I hope it is helpful to someone:
    #target Illustrator
    //  script.name = fitObjectToArtboardBounds.jsx;
    //  script.description = resizes selected object to fit exactly to Active Artboard Bounds;
    //  script.required = select ONE object before running; CS4 & CS5 Only.
    //  script.parent = carlos canto // 01/25/12;
    //  script.elegant = false;
    var idoc = app.activeDocument;
    selec = idoc.selection;
    if (selec.length==1)
            // get document bounds
            var docw = idoc.width;
            var doch = idoc.height;
            var activeAB = idoc.artboards[idoc.artboards.getActiveArtboardIndex()]; // get active AB
            docLeft = activeAB.artboardRect[0];
            docTop = activeAB.artboardRect[1];
            // get selection bounds
            var sel = idoc.selection[0];
            var selVB = sel.visibleBounds;
            var selVw = selVB[2]-selVB[0];
            var selVh = selVB[1]-selVB[3];
            var selGB = sel.geometricBounds;
            var selGw = selGB[2]-selGB[0];
            var selGh = selGB[1]-selGB[3];
            // get the difference between Visible & Geometric Bounds
            var deltaX = selVw-selGw;
            var deltaY = selVh-selGh;
            if (sel.width > sel.height) {
                var newWidth = docw-deltaX;
                var ratio = sel.width / newWidth;
                sel.width = newWidth; // width is Geometric width, so we need to make it smaller...to accomodate the visible portion.
                sel.height = sel.height * ratio;
            } else {
                var newHeight = doch-deltaY;
                var ratio = sel.height / newHeight;
                sel.height = newHeight;
                sel.width = sel.width / ratio;
            sel.top = (doch / 2) - (sel.height / 2);
            sel.left = (docw / 2) - (sel.width / 2);
        else
                alert("select ONE object before running");

  • Null object not centred, why?

    Create a null object and it's not centred to its location. Why?
    Seems like that would be the most obvious position to put the visual representation of a null object. So the least likely place for Adobe to put it?
    Or is there some logical reason?

    dissidently wrote:
    Rick, all other apps that have Null objects use them far more wisely than Adobe does. Mylenium has confirmed my suspicion, that these things weren't thought through, simply created (probably in a panic or out of laziness) as a half way house to what Null objects actually can be.
    I get your point about the anchor point, but that's not what I'm talking about. In ALL other apps with a Null object, the visual representation of that Null object is centred. There's a tonne of reasons to do that, and I'm not contending the placement of the Null objects "anchor", it's in the right spot. It's the visual representation of the Null object that's utterly wrong.
    That it's a deformable visual representation only compounds this problem.
    Your usual presumptuous assumptions.
    The null object was a remarkable improvement over how, in the olden days, we created invisibly small or transparent objects to do roughly the same thing.AE's were the first nulls I ever encountered. I learned how to use them when introduced and never really thought about how they might have been better. AE's nulls made perfectly good sense to me. And I don't use the other applications you are alluding to so I don't really need AE's null to be any different. I have, more than once, moved the null's anchor to its geometric center to help my project contributors grasp the concept. But they had no prior experience with nulls, either, so once they got it, I moved things back to their default because that works for me. Why are you still using After Effects?

  • Front Panel objects do not stay in place after saving, closing, and reopening the VI.

    I have been working with a couple of versions of a main VI. The original VI was given to me so that I could add additional functionalities to it. I had been designing the front panel of the latest version of the VI on a Dell laptop running Windows 7 and LabView 2011 SP1 using a monitor with a resolution of 1920x1080. My booleans, numerics, and plots on the front panel had always stayed in place after saving, closing, and reopening the VI. Once in the field, I connected my laptop to a cRIO9073 and used my laptop screen with a resolution of 1366x768 to operate the VI. I made some changes to the VI, saved it, and reopened it. This time I noticed that the front panel objects had become overlapped, resized, and generally rearranged. I tried fixing the objects but I noticed that they reverted back to the incorrect positions after saving and reopening the VI. I was successful in keeping the objects in position a couple of times, but when I would open the VI at a later time, the objects were again rearranged. This is happening on both my monitor and laptop screen. The original version of the VI, however, does not behave this way and I have opened it on both my monitor and laptop screen. In this version, the front panel objects always stay in place. Both VI's have the same window size properties. Could I have corrupted the latest version of my VI somehow? Below are screenshots of the front panels of both VI's.
    Attachments:
    Blender Controller Original.PNG ‏140 KB
    Blender Controller.PNG ‏203 KB

    Hi Miguel,
    It is possible to programmatically set or change the position of front panel objects. (for example: http://digital.ni.com/public.nsf/allkb/4D0DA06B431​95B3F862572F3000AF2D3?OpenDocument) However, if you haven’t intentionally done that, it seems unlikely that it is the problem.
    Have you tried copying the entire block diagram in to a new VI to see if the problem persists? While it is unlikely, you are right that it is possible for VIs to become corrupted. I’ve never heard of a situation like this except in the situation where the settings Tom had you check have been changed. Here is some information about those settings:
    http://digital.ni.com/public.nsf/allkb/7567EF257B9​CFDF986256F630073228F?OpenDocument
    Since there was no rearrangement when you copied the front panel to a new VI, you might try copying the block diagram a little bit at a time to see if there is some particular part of it that creates the problem somehow.
    K. Johnson

  • Adobe Illustrator CS4 is crashing when I try to place an object

    Every time I try to place an object... or really everytime I try to do something that opens a finder window (re-linking objects, etc) the program crashes.  I have a macbook pro, should have plenty of RAM and have no idea why this is happening.
    Please help!

    Nelli:
    Can you tell us how much RAM you have and what OS version you are running?
    Also, how much hard drive space do you have available?
    It may be only that your preferences got corrupt. Have you tried deleting your preference file and letting Illustrator rebuild it when it's launched again?

  • Place an object like Illustrator does.

    Hi. I need a way for Photoshop to place an object like Illustrator does. Sure, Smart Objects are nice but I need a method where I have a PS file and 1 or more layers in it are referenced. When these references are updated the PS file should update automatically (yes, I will have to have the file open and save ...). Illustrator does this ... page layout apps do this. I need for PS to do this or find a work method that will help do this. Any thoughts?
    The specific details:
    We have several hundred images of our app's interface. The images are composites of generic interface and language-specific interface. To make things easier when updating or translating docs we snag the local parts of the interface.
    We would then place and align the separate images in FrameMaker. We're moving to a new tool and output and we need to put all of the images together in a single image file but want to retain the ability to only update the localized sections. Smart Objects are not smart when trying to do this as they require you to either (essentially) re-import the object (using Replace) or edit the object from the composite image. This obviates the ability to simply replace the target image and have the composite update.
    So ... any input? Thoughts? Ideas? I considered the possiblity of doing this from Illustrator but that is just so much more ... demanding.

    Yes one thought, but it's not perfect:
    I think this would require a Phoroshop Javascript which does the following:
    First, prepare the document: Each smartobject should be named like the actual file of it's original content, so the script knows where to look for changes, like "screenshots/shot1.jpg", "titles/title1.png" and so on.
    Second, the script:
    It should go through all smartobjects in the document and then check the file (which it gets by the name of the smartobject) and it's date.
    If it's newer than the document's last changed date, it should replace the content, otherwise just skip it.
    Well I don't know if the Photoshop Javascript is actually capable of things like that, but it can do a lot though and can be a big helper for everything batch-related

  • Yosemite problems with double click dock commands and keyboard shorcuts

    I have a mid 2012 macbook pro 17", i recently installed Yosemite although it fixed my internet problem (connection dropping randomly) now i am having issues with opening apps and files. Double clicking on a file launches the corresponding app but does't open the file i just get and message stating the app is not open anymore if click the file again. Finder keyboard shorcuts such as command+Q don't work. Can't access some menu items such as "about this mac". Dragging a file into the dock icon launches the app but doesn't open the file either.
    I have no idea what's causing this. anybody got a clue or having similar problems
    Thank you

    Same problem here. (Yosemite 10.0.1)
    the mouse is a 'team scorpion g-reaver' http://teamscorpion.net/ts2014/g-reaver_1.html
    It's work perfectly on the pc of my brother (he uses windows).
    It's a clean install...
    And has a funny fact... The Left Button was with this problem... So what I did? I changed the primary mouse button to the Right... Worked ok for almost 1~2 days... After that, the two buttons showed the double-click problem....
    But, I repeat, the mouse works perfectly in the windows of my brother '-'

  • Cannot place smart object because the parser module cannot parse the file

    Some of my images are saved in Ai for use in my Adobe Ps, but a few of them now give me an error when I try to replace
    a smart object with a saved image from Ai.  I get an error message instead that says "cannot place smart object because the
    parser module cannot parse the file", I have no idea what this means or why it only happens to some images and not all.
    I save everything in the same format and load it into the smart object the same way but some do not work.  If anyone
    knows the solution please help me!!
    Thank you in advance!
    Leila

    As it says: the AI file is not readable.

  • With PS 7  create new  Place two objects on the new file  then you may cut copy and paste Cs2  create new  place two object on the new file Cut is not available how does one cut and paste in new file

    With PS 7
    create new
    Place two objects on the new file
    then you may cut copy and paste
    Cs2
    create new
    place two object on the new file
    Cut is not available how does one cut and paste in new file

    If your using File>Place then photoshop cs2 creates what's known as Smart Objects, which photoshop 7 didn't have.
    In photoshop cs2 you can rasterize the smart objects and that should make the Cut function available.
    Select both placed layers, right click on the area to the right of the tumbnail and select Rasterize Layers.
    If in photoshop cs2 you to Help>Photoshop Help and look under Layers>Smart Objects, that should give you a good overview of what smart objects are.

  • Why does Muse crash practically every time I go to place an object?

    Why does Muse crash practically every time I go to place an object?

    Hello Zak. I am using Adobe Muse CC latest version on an iMac 7 running Yosemite version 10.
    I am placing a .jpg photo onto a page at the same size. Sized to fit I mean. This is happening about every 3 to 4 times I do something like asking to Place a file. It is driving be mad.
    I attach a screen grab of this all too familiar screen. I have updated to Air 3 also. What is going on, please help.
    Thanks.
    With kind regards, Richard
    Because good design is everyone's business.
    ROC Design Killough House, Killough Lower, Kilmacanogue, Bray, Co Wicklow.
    Call: 01 2762118 Email: [email protected] Skype: killoughhouse
    Web: http://www.rocdesign.ie

  • Keyboard shorcut to cut (move) file/files?

    Is anyone know, what is the keyboard shorcut to move file / cut file? Because as far as I know, cut command in edit menu is working only for teks editing...so can anyone tell me how can we move (not copy) with keyboard shorcut (except with drag & drop of course...). Thanks a lot guyz...

    Cutting files is a no-no for some reason with Apple. If you really must, you could do what I did and make a finder plug-in with Automator which will do it for you:
    1. Open Automator
    2. Click "Finder" in the "Library" pane
    3. In the action pane, drag "Get Specified Finder Items" into the right hand side of the window (where it says "Drag or add actions here to build your workflow")
    4. In the "Action"pane, drag "Move Finder Items" to the right hand side, underneath the action you added in step 3
    5. Click the triangle beside "Options" in the "Move finder Items" action you added in step 4
    6. Select "Show Action When Run", select "Show Selected Items", and select "To"
    7. Click "File", and select "Save As Plugin..."
    8. In the "Save Plug-in As" box, type "Move", and make sure the "Plug-in for" box says "Finder"
    9. Click "Save"
    After that, when you want to move a file, simply ctrl-click it, select "Automator", and then "Move" (or whatever you called your plug-in in step 8), and a dialogue box will pop up asking you where you want to move to.
    (I'd try it out on a few non essential files to make sure everything's working OK)
    phew

  • Can the origin for an object be always the centre of the stage?

    Hello everybody!
    I am doing a site where I've got an object bigger than the stage, that I can zoom and drag. My problem is that when I zoom the object, he uses an origin which is on the same object. What i need is that the origin of the object will be always the centre of the stage. The aim is to drag the object and zoom in right where I am, as happens for examle in a Cad.
    So, can the origin for an object be always the centre of the stage?

    Could you try this
    sym.$('yourelement').css('background-origin','#Stage');
    Not sure though.

Maybe you are looking for

  • Header renderer click handler not working

    Hi All Below is code of my header renderer which copied code from default headerrenderer and created new one, I added textinput with down arrow and close button, But when i click on close button, I am making filter box invisible, If i put a break poi

  • Updating to 10.4.7 & Quicktime 7.1.2 erased everything!

    Hi, I'm new to these forums, but I couldn't find any others with this problem. Last night I allowed "Software Updates" to upgrade everything it wanted to on my MacBook Pro, including System 10.4.7 and Quicktime 7.1.2, and then I shut it down. Unfortu

  • Exporting project with mediafiles

    Hello, Would anyone please help me? I am working on a fairly big project, or rather many projects sharing the same media files. I have gathered all my media in a couple of different folders according to type of media. I want to work on one or a coupl

  • Reader Extension and Submit Button

    Hi, I reader extended a form with the Reader extension web application. The issue is when I start the process in the workspace and my form is open, the submit is not embed anymoe in the workspace. How could I fix that ?

  • SEARCH feature in NOTES is missing

    Let's say I add a note each day for 2 years on my iPod touch. Then one day I seem to recall a note I wrote approxinmately a year ago that involved the name Billy Bob. Wouldn't it be nice to select SEARCH and type in 'Billy Bob' to find all records th