Resizing artboard

I am trying to set up a new artboard in Illustrator CS 4 with the dimensions of 2.375 X 3.625 but Illustrator keeps rounding the numbers up to 2.38 x 3.63. How do I keep Illustrator from rounding numbers? Can I extend the decimal places somewhere? Can I turn this feature off?
Thanks so much in advance
Jenny
CS4
Win XP Pro

Really?  I work in CS3 so can't see this for myself.  In CS3, it will show up to 4 places in the document setup window (good thing I never work in 32nds!) When it rounds though, it's only rounding the number that's shown - it's not changing the size of the document (at least in CS3)  In CS3, there is not a way to adjust the number of decimal places.
Seems like they took a step backwards in lowering the decimal places shown though... I wonder what the rationale was there...

Similar Messages

  • Illustrator CS6: resizing artboard - x y dimensions box missing

    Hi,
    first of all: I am NOT referring to the dimension boxes on the toolbar.
    I'm learning Illustrator CS6 and I've got a document with some artboards.    I select the Artboard tool and resize the artboard without any issues.  However, I've seen lots of videos where a little box shows while the artboard is being resized and it shows X:... Y:...
    I don't have that.   Hope this is making sense.
    I have googled this extensively but no luck.
    Is it a Mac-specific feature?  I'm using Windows 7.
    How do I turn it on?
    thx
    David

    Feature is on both Win & Mac
    View >> Smart Guides
    You probably have the defaults so should work. If not edit your smart guide preferences and add checkmarks I have.

  • Resize artboards should use shift/alt modifiers like the scale tool

    Expected behaviour would be to scale artboards with shift to constrain proportions or alt to resize from center like the bounding box or scale tool.
    Thanks!
    Felix

    +1

  • Any way to resize artboard and have it adjust the coordinates so bottom left corner is 0,0?

    That may have been too wordy of a question.
    I've noticed that when I resize the artboard of my document the coordinates don't update with it. 0,0 which for me is always good in the bottom left corner now becomes some spot in the region. The bottom left corner becomes -344,-555. This doesn't work for me.
    So far when I'm faced with this I just make a new document with the new size I want, but it gets old.

    Larry G. Schneider wrote:
    Since Ai is (or rather was) based on the page description language Postscript, it started with the convention from math where the 0,0 is the lower left corner of the X-Y quadrant system to keep both numbers positive.
    Thanks for the explanation
    Which is why X being on the L/R axis is always on the left corner anyway... And Y being on the Top to Bottom is always on the bottom...PIA
    But thanks again...

  • Batch resize artboard on 400+ files via Actions or Script needed

    I have over 400 AI files to process and I need to change the artboard size to the following specifications exactly on all files:
    X: 108 px
    Y: -108 px
    W: 216 px
    H: 216 px
    Does anyone have a script for this? I did some digging and came up empty. Any help is greatly appreciated. Thank you!

    its possible, but someone who can actually script will have to fill in the gaps here. this script accesses the artboard size:
    app.activeDocument.artboards[0].artboardRect = [0,0,0,0];
    i'm pretty sure the numbers are coordinates for the positions of the corners, but exactly how to translate that into a specific WxH i'm not sure. but if you can work that part out, you can record the script as part of an action (insert menu item), and then use the batch options to target a folder.

  • Resize artboard to content - works in Mac (CS6), not Win (CC)

    Hello!
    This code works perfectly in Illustrator CS6 for Mac:
    function resizeArtboard() {
                app.redraw();
                app.activeDocument.artboards[0].artboardRect = app.activeDocument.visibleBounds;
                app.redraw();
    It works like the menu option "Shrink artboard to fit content".
    However, running this script in Illustrator CC for Windows, the result is different: the content is enlarged to fit the artboard instead.
    How can I solve this?
    Thanks in advance!
    /Måns

    It turns out I was wrong: this function did work. However, when I then saved the file as an SVG, Illustrator ignored the document proportions. To correct this, I had to set the export option preserveEditability = true (of all things ...). Apparently it's a feature of Illustrator CC to not include the document proportions in SVG files by default.

  • Resize doc in Illustrator CS4 js

    Hi,
    I need to resize existing document. It looks like I found not quite correct code, because it's not working, but I couldn't find anything else:
        myDoc.DocumentPreset.width = "6.125 in";
        myDoc.DocumentPreset.height  = "4.125 in";
    Thank you for your help.
    Yulia

    Hi Yulia,
    try this following script:
    #target illustrator
    var docRef = app.activeDocument;
    var mmTOpt=0.3528; //coeficiant
    var inTOmm=0.03937; // coeficiant
    var W=6.125/inTOmm/mmTOpt; // converting point to inch
    var H=4.125/inTOmm/mmTOpt; // converting point to inch
    var W2=(((docRef.visibleBounds[2]-docRef.visibleBounds[0])/2)-(W/2))+docRef.visibleBounds[0]; // get value for centering the next pathItem (TEMP)
    var H2=(((docRef.visibleBounds[1]-docRef.visibleBounds[3])/2)-(H/2))+docRef.visibleBounds[3]; //get value for centering the next pathItem (TEMP)
    if (app.documents.length > 0) {
         docRef.pathItems.rectangle(H2,W2,W,-H);
          docRef.pathItems[0].name="TEMP"; // safety option, but in fact we can use pathItems[0] for following command
         docRef.artboards[0].artboardRect = docRef.pathItems.getByName("TEMP").visibleBounds;
         docRef.pathItems.getByName("TEMP").remove();
    else {
         alert('Open a document before');
    Like as said Muppet Mark, we can't directly assign a new size to already created document, but we can change artboard size (and after we can use cropBox command if need). * tested on CS4
    Script description:
    first, illustrator works in Point to inch or millimeter, we need to convert to point. (in script i shown each step, but of course we can reduce to one step)
    Second, (it's heavy for me to understand bounds attribute..but it seems it's work like [X,Y2,X2,Y] where X2=X+Width and Y2=Y+height), i would put a new pathItem centered with each other Items.. myDoc.visibleBounds return [X,Y2,X2,Y] as if all items it was grouped.
    Third, resize artboard as created pathItem, and delete it
    Another way should be :
    1) create a new doc this good size
    2) copy all items of previous document  on new
    Cyao, art.chrome

  • How do you resize multiple artboards in Illustrator at the same time?

    Hi,
    This is a question that has been bugging me for a while.  I'm currently on CS6 but I'm looking for a solution that can also work on CS5 for a co-worker.
    Having multiple artboards has been established since CS4 and I have yet to see an official way of resizing multiple artboards, if anything there should at least be a plug-in.
    As great of a feature it is, it seems a little short sited.  If one has multiple artboards one should be able to manage multiple artboards, right?
    I totally love having multiple artboards but I should be able to resize and manage multiple artboards as well.
    This is great for building icon sets but how can I resize the set all at once?
    I was considering trying to do an action but odds are I still would have to select an artboard one by one to do which doesn't save much time if you have like 30 artboards to apply this to. 
    I don't even see a batch render for artboards and Photoshop has that for its files.
    I'm well aware of the solution that is displayed here:
    http://forums.adobe.com/thread/1093465
    Which is a script.  I'm not sure where I'm supposed to put it.

    mec_os wrote:
    you can resize the artwork on export. no need to draw it to size.
    Unfotunately when I looked into that does not seem to be the case.  However I can resize when I "Save for Web" but that appears to only work for one artboard at a time.  I can Save As or Export multipe artboards but not adjust the size.  Believe me I would be happy if I could resize multiple artboards upon export but apparently that is not an option.
    mec_os wrote:
    you can put the scripts in illustrator's folder/presets/en_us(or whatever localization you have)/scripts. you can then access them in illustrator from the menubar/File/Scripts/
    there are also applications that will let you execute scripts with assigned shortcuts. i believe sparks is free.
    Thanks for pointing out the location. 
    Do I save it as a txt file or something else?
    (I was guessing that I would copy the script into notepad or something)

  • Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Is there a plug in to resize the canvas size in Illustrator CS6?  Not the artboard, the canvas size

    Reckon that’s what he must mean
    Are you sure, Steve?
    Kurt may agree.

  • BUG - Artboard resizes on own when clicking height and then clicking width field

    Bug with artboard -
    I click on a square to create an artboard. Without changing anything if I click in the width field and then the height without changing anything, the art board resizes as shown in the second image in pic 1 (art board values change as shown in pic 2). If instead I click first in the height field and then width, they change as shown in the third pic (settings as in pic 3)
    Pic 1
    Pic 2
    Pic 3

    what version?

  • Help: artboard resizes when saving to svg in illustrator cc

    I am on a pc (windows 8) using illustrator cc and trying to save from an .ai file to an .svg file. I've also taken a previously saved svg and manually fixed the artboard, then saved. Still resizes the artboard. I've done this multiple times with sucess, but after updating the software last week, the artboard is expanding when I save. I thought I must have changed a setting, but don't think so. I've read lots of posts and tried all kinds of settings but here doesn't seem to be a solution out there. Wish I could go back to the older version!

    I have an artboard approx: 612px by 390px.  I save file as svg (w response off) and no artboards chosen (or with 1 artboard chosen). I close the file and then I open it again. The artboard is now letter size and the artwork is the same.
    But now what is happening is the artboard remains the same size but the artwork is offset below (negative y) and looks like a second artboard, but it isn't. I can correct this by going to objects> artboards> fit to selected art, but it still won't save (hold the correction). I have hundreds of files to save, so fixing manually even if I could, is not an option.
    Thinking these 2 problems are related?

  • Scrollbars, artboards, resizing and other minor tweaks offer

    I hope Adobe reads these forums, so here i post some bugs to fix, minor tweaks and my personal wishes for Illustrator. I guess many of them are not so hard to fix, but will make Illustrator much better.
    BUGS:
    - fix alt-scroll bug in pixel preview (viewport jumps to unpredicted locations)
    - layers panel becomes black when dragging a layer and scrolling at the same time (and the panel has enough layers to scroll)
    MINOR TWEAKS:
    - recolor artwork on the fly when dragging sliders in the color panel (not after releasing mouse button)
    - option to hide edges of inactive artboards only
    - resize crop areas to both sides (like drawing objects) when pressing alt
    - NORMAL scrollbars
    - in Appearance panel when clicking an eye and dragging mouse down/up toggle visibility of lower/upper items, but not dragging the item (make behavior same as in layers panel)
    - chahge value of numeric fields on hover and drag (not on click and drag, like in Photoshop)
    - when resizing, snap objects to their original size and position even when snapping is turned off
    - not squeeze/streth text when resizing area type
    - make hexadecimal field in color picker dialog 3 pixels wider so that all 6 characters fit in it
    - make status bar remember my choise of what to show
    - undo/redo functionality inside live color dialogue (!!!)
    - in view menu the word "show" shouldn't change for "hide", but a tick should appear/disappear
    - apply gradient by clicking with the gradient tool on an object
    - fonts preview in the drop-down menu in control panel
    - make stop button actually stop the progress when an effect is applying
    WISHES:
    - Photoshop's actions panel
    - right-click menu is really useful why not use it and put more often used commands in there like flip horisontal/ vertical when an arrow tool is active
    - fireworks' pathfinder
    - gradient stroke
    - labeling of crop areas (and possibly everything a slice has)
    - zoom and pan art when a dialogue window is open (like in Photoshop)
    Also SVG support back to Bridge.
    PS. And make this site usable in Opera. I could type text in this textarea only after disabling all styles for the page.

    I hope Adobe reads these forums, so here i post some bugs to fix, minor tweaks and my personal wishes for Illustrator. I guess many of them are not so hard to fix, but will make Illustrator much better.
    BUGS:
    - fix alt-scroll bug in pixel preview (viewport jumps to unpredicted locations)
    - layers panel becomes black when dragging a layer and scrolling at the same time (and the panel has enough layers to scroll)
    MINOR TWEAKS:
    - recolor artwork on the fly when dragging sliders in the color panel (not after releasing mouse button)
    - option to hide edges of inactive artboards only
    - resize crop areas to both sides (like drawing objects) when pressing alt
    - NORMAL scrollbars
    - in Appearance panel when clicking an eye and dragging mouse down/up toggle visibility of lower/upper items, but not dragging the item (make behavior same as in layers panel)
    - chahge value of numeric fields on hover and drag (not on click and drag, like in Photoshop)
    - when resizing, snap objects to their original size and position even when snapping is turned off
    - not squeeze/streth text when resizing area type
    - make hexadecimal field in color picker dialog 3 pixels wider so that all 6 characters fit in it
    - make status bar remember my choise of what to show
    - undo/redo functionality inside live color dialogue (!!!)
    - in view menu the word "show" shouldn't change for "hide", but a tick should appear/disappear
    - apply gradient by clicking with the gradient tool on an object
    - fonts preview in the drop-down menu in control panel
    - make stop button actually stop the progress when an effect is applying
    WISHES:
    - Photoshop's actions panel
    - right-click menu is really useful why not use it and put more often used commands in there like flip horisontal/ vertical when an arrow tool is active
    - fireworks' pathfinder
    - gradient stroke
    - labeling of crop areas (and possibly everything a slice has)
    - zoom and pan art when a dialogue window is open (like in Photoshop)
    Also SVG support back to Bridge.
    PS. And make this site usable in Opera. I could type text in this textarea only after disabling all styles for the page.

  • CS6 artboard - cant resize from center

    In CS5, if you hold the ALT key (on windows, not mac) while resizing the artboard, it will scale from the center... creating an even width reduction/increase on either side of the page. Why was this behavior removed in CS6?

    as a workaround one could draw a rectangle the size of the artboard, resize it from the center, turn it into an artboard, then delete the original artboard.
    or...
    long time ago (a little over a year ago) I wrote a script for CS4 that resized the artboard to fit the Art in it...it went obsolete with CS5. I think we could do it in CS4 also but the command could not be recorded in an Action...something like that, I don't remember. It could be used for this request....
    is anyone interested?
    ...should I post it here? or I could also start a new thread with the usual "Introducing..." or "Re...Introducing..."

  • Can you make Illustrator automatically resize artwork to fit (new) artboard?

    I've got an Illustrator storyboard document with 10-12 panels on each page. I need to create larger JPGs of each panel. I've been pasting each into a new document, scaling them up, and placing them so they're within the artboard correctly. Is there an easier way to have Illustrator just fit the artwork to the new artboard?

    Can you post a visual of what you're trying to do?
    Otherwise, off the top of my head I'd do this in the same illustrator file (or a copy). Just resize the artboard, then group all of the elements and scale them up by the same percentage. Use the same reference point for both the resize of the artboard and the scaling of the art and they should match right up.
    Or, when you export to jpeg from Illustrator, increase the resolution to account for the larger dimensions you need.
    Michael R
    http://www.learnadobesoftware.com

  • Resizing and scaling all content to the artboard

    Hi
    I have about 150 files of various sizes. They all have different content and need to be resized to 5cm x 5cm (2.5in x 2.5in) so they can be compatible with an online system of mine.
    I have succesfully made a script that opens every file in the directory with the files, then resizes their artboard to my required size. Thats part of the manual labor taken out of the job.
    But how do I make the script resize and scale all content to the artboard, irrespective of the size of the content initially? Similar to how you might scale an image in Photoshop? I've seen bits and peices of code around that can resize and scale text objects and the like, but what about all content in the file?
    Robbie

    She needs to sync her phone to HER account on HER computer with HER iTunes library. Syncing with YOUR iTunes library does exactly what you described. By design.

Maybe you are looking for

  • How do you set-up a floating image in a header or footer?

    I want to place a floating image in the header or footer so it repeats on every page of a section. Somehow this has been achieved in the Project Proposal Template but I can't work out how you set something like this up from scratch. Can you help me?

  • Servlet passing Values to JSP

    I want to know when I forward from a servlet to a JSP how do I pass           values especially Java Objects (Sometimes Objects of User written Java           classes).           Uptil now I have been putting all values in the session from where the

  • Source Formatting isn't doing what I expect

    I either don't understand how it works, or it isn't working as it should. When I apply Source Formatting to badly formatted code, I was expecting it to format the td tags like this: text <td> tag contents </td> text In the tag library editor it says:

  • Need to extract FS items and Hierachy (TRX CX17)

    Hi ALL, I need to extract a FS iten hierarchy from CX17 ,do u have any sample code which i can use as ref code for it? I have to display parents n child accordingly .. Let me knw ,as its on urgent basis. Thnks in advance

  • Exchange 2007 smarthostdelivery missing

    Hi, Recently, I encountered this problem twice in a span of 3 weeks. We have configured our Exchange 2007 ( sp2 ) CAS/Hub to route outgoing mails to an antispam appliance. We have this done 5 years ago with no problem. Until recently, our users compl