Illustrator :: CS6 Artboard - Can't Resize From Center

Jul 9, 2012

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?

View 4 Replies


ADVERTISEMENT

Illustrator Scripting :: How To Resize Artboard To A4 Size And Images Placed In Center Of Artboard

May 23, 2013

i have around 500 eps formats images with different artboard size.
 
i need to resize the artboard to A4 size and the images to be placed in the centre of the artboard.

View 4 Replies View Related

Illustrator :: Default Rotate To Object Group Center Not Artboard Center

Nov 27, 2013

I'm sure this is mind-numbingly obvious and I am overlooking it, but when I go to use the rotate tool, the center point of the rotation is defaulting to the center of the artboard, not the selected group of objects. How do I change that to default to rotating on the selection center by default?
 
PS. This is Illustrator CC (17.0.2) on a Mac running 10.9, if that is relevant.

View 2 Replies View Related

Illustrator :: How To Resize Canvas (not Artboard)

Apr 28, 2013

How to re size the canvas ? (i am not asking about the art board, but the canvas).

View 1 Replies View Related

Illustrator :: Resize Canvas Size In CS6 - Not Artboard

Jun 26, 2013

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

View 5 Replies View Related

Illustrator :: Uniformly Expanding Artboard From Center?

Dec 7, 2012

Is there any way to uniformly expand the Artboard from the center of the artboard? I like the way my current page is setup, but I just need more border all the way around.

View 3 Replies View Related

Illustrator :: Batch Resize Artboard On 400+ Files Via Actions Or Script

Apr 30, 2013

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
 
Any script for this? I did some digging and came up empty.

View 3 Replies View Related

Illustrator Scripting :: How To Resize Artboard To Exact Mm Size Via Script

Aug 13, 2013

I'm trying to resize my artboard to an exact mm size via a script so then I can add this to a batch i'm trying to achieve.
 
I've been trying to use the following, but i cant work out how to add the size I want in mm?
  
#target illustrator

var doc = app.activeDocument;
var docVB = doc.visibleBounds;
    var myVisibleBounds = doc.visibleBounds; //Rect, which is an array;
    myVisibleBounds[0] -= 20; //left coordinate (use negative values to add artboard)
    myVisibleBounds[1] += 20; //ltop coordinate
    myVisibleBounds[2] += 20; //right coordinate
    myVisibleBounds[3] -= 20; //bottom coordinate (use negative values to add artboard)
    doc.artboards[0].artboardRect = myVisibleBounds;

View 4 Replies View Related

Illustrator :: How To Align A Group Of Objects To Center Of Artboard

Dec 5, 2012

how can I align a group of objects to the center of the artboard or elsewhere. Rt now it aligns each object in the group to the center, but I need the group as a whole to be centered.

View 3 Replies View Related

Illustrator :: How To Place A Guide In Exact Center Of Artboard

Nov 4, 2012

1. Is there an easy/precise way to place a guide in the exact center of an artboard?
 
2. I want to use the guide to create a balanced design for a poster by making sure that I place my focal image on the center of guide to ensure that half of it displays on either side of the guide. How important is it to strive for complete balance? Sometimes I see ads that seem to have balance while other times there might be tons of white space an some graphic element on one side or the other of the layout.

View 4 Replies View Related

Illustrator Scripting :: How To Center Current Selection To Artboard

Feb 17, 2014

how do I center my current selection to the artboard? just like hitting the "horizontal align-center" and "vertical align-center" buttons. I've been searching for the last two hours and before my head hits the keyboard.
 
What I'm struggling with: in my init function i create a new document and then copy all layers from the previous document step by step to the new document and then save it as SVG.
 
// Init
(function(){
          destination = Folder.selectDialog('Select folder for SVG files.', docPath);
          if (!destination){return;}
          holderDoc = app.documents.add();
          stepThroughAndExportLayers(docRef.layers);
}());
 
my problem is that holderDoc = app.documents.add(); always creates a document that is not the same size as my initial document where the layers get copied from.
 
so I want the exact same artboard size as in my initial document.I'm fine with either doing it as fixed values or taking directly the values of the inital doc. i tried this in the segment where I create the new document:
 
// Init
(function(){
  destination = Folder.selectDialog('Select folder for SVG files.', docPath);
  if (!destination){return;}
  holderDoc = app.documents.add();
  holderDoc.artboards[0].artboardRect = [0,0,128,128];
  stepThroughAndExportLayers(docRef.layers);
}());
 
and get this error message: "Error 1200: an Illustrator error occured: 1346458189 ('PARM')

Line: 83
-> holderDoc.artboards[0].artboardRect = [0,0,128,128];"
 
which from what I've read on the web means that illustrator doesnt know what document to pick. but i have called it directly. I do not want to fit the artboard to the images/layer. the artboard should always have a certain size. (for me 128px by 128px)
 
// edit: workaround
(function(){
          destination = Folder.selectDialog('Select folder for SVG files.', docPath);
          if (!destination){return;}
          var activeArtboard = app.activeDocument.artboards[app.activeDocument.artboards.getActiveAr tboardIndex()];
          var ABRect = activeArtboard.artboardRect;
          holderDoc = app.documents.add();
          holderDoc.artboards.add(ABRect);
          holderDoc.artboards.remove(0);
          holderDoc.artboards.setActiveArtboardIndex(0);
          //stepThroughAndExportLayers(docRef.layers);
}());
 
i now added a new artboard to the new document with the same size as the artboard on the initial document.i remove the predefined artboard on the new doc and set the new artboard as active the artboard is now not centered into the window. which lets illustrator place my image with ctrl+c -> ctrl+v somewhere outside the artboard.
 
i now need to align my selection to the center of the artboard. but i cant find any reference on how to center a selection to the artboard.

View 7 Replies View Related

Illustrator Scripting :: Center Group On Artboard Using JavaScript?

Aug 14, 2013

I have a group that I want centered on the artboard. 

View 9 Replies View Related

Illustrator :: Drag A New Symbol Instance To Artboard And Resize The Instance Alignment With Pixel Grid

Oct 21, 2012

Sometimes when I drag a new symbol instance to my artboard and resize it, the instance looses it alignement with the pixel grid.
 
This happens despite the fact that...
 
I checked the box for pixel grid alignement when I created the documentthe symbol option is set for align to pixel gridthe original shape in the symbol is aligned to pixel grindthe original shape has the align to pixel grid check box in the transform panel checked 
So why when I resize the symbol instance does it break the pixel grid alignmnet and result in a blurred 1px stroke?

View 1 Replies View Related

Illustrator :: Layout Vertical / Horizontal Guides On Artboard - Copy Them Over To New Blank Artboard

Nov 3, 2012

1.) I dragged out vertical and horizontal guides from the rulers and then created a new art board. The new art board now has the horizontal guides carried over from the first art board. How can I have separate guides on each of my art boards? I am using art board rulers.
 
2.) Is there a way to layout vertical and horizontal guides on an art board and copy them over to a new blank art board?

View 3 Replies View Related

CorelDRAW X5 :: Resize Objects From One Side Not From Center?

Dec 5, 2011

When I resize an object (for example, I want to extend a horizontal line by 20%, using the % boxes in the property bar), the resizing action is executed from the center of the object itself (so, 10% to the left and 10% to the right in my example).

If that object is snapped to other objects, resizing from the center automatically unsnaps them and so snapping must be done again.

Is there a quick way (such as double clicking a node, or so) to resize an object not from its center, but from a side or a vertex of it?

View 14 Replies View Related

Edge Animate CC :: Resize Shape From Center?

Sep 24, 2013

I am only seeing the corners, is there a way to resize a shape from center when creating an animation?

View 2 Replies View Related

CorelDRAW Graphics Suite X5 :: Resize From Center Using Nodes

Oct 4, 2012

I'm trying to find a way to do this:

Make an object (eg an hexagon), and resize it from it's center radially, by dragging a node (and not those black squares). What I got so far, is, using the pick tool, clicking on it to go to rotation mode, hold shift and ctrl, clicking on a node (eg, from a point or the middle of a side), and dragging it.

It works IF i change it's angle, but strangely, if I keep the same angle (just resizing it), nothing happens, neither it gets resized, neither i can clone it (with right mouse click). It only keeps a blue shadow of what would be the object, without doing nothing.

What I want to do with this is, for example, create a square and an hexagon inside it, allign one of it nodes with a node of the square, and resize the hexagon by draggin another node of it until it touch (using snap to objects) another side/node of the square. As I said, it can be done if I resize by the rotation, but only if I change the angle, wich is strange for me.

Am I missing something? It's really weird that I can almost do this without problems, but then nothing happens at all. I wish I could show this visually, would be way better to explain the problem.

View 7 Replies View Related

Illustrator :: Is It Possible To Lock Artboard

Nov 22, 2012

I have a big artboard with a simulation of a webpage, and a smaller artboard within it, where I'm designing the artwork, so that I know how the big picture will look. In the end, I intend to export the contents of the small artboard. The problem is that whenever I click by accident on the small artboard, my view of the web page gets off-centre.So in short, If I could just lock the small artboard, that would solve this annoyance. For now, I have two options: either delete the artboard and set it back in the end (it's got to be perfeclty positioned though) or, quite practically, just create a custom view with a shortcut that I  can use instead of the "Actual size" one (Cmd+1).

View 18 Replies View Related

Illustrator :: How To Save For Web JPG Of Each Artboard

Feb 13, 2014

I have a AI CS6 file with 16 artboards. I need to 'save for web" a jpg of each artboard. Is there a way to automate this, by setting up an action - or is there any way to do this? I'll be having to do it frequently.

View 16 Replies View Related

Illustrator :: How To Fit Artwork To Artboard

Nov 26, 2013

I have a bunch of artwork that I need to fit to artboards that need to be the same size, basically I'm looking for something similar to "Fit to Frame" in Premiere/After Effects.

View 5 Replies View Related

Illustrator :: Hide Everything Outside The Artboard?

Mar 12, 2008

I'm designing some business cards, which have an 1/8" bleed, along with elements that hang outside of the border of the card. Is there a way in Illustrator CS3 that I can say, "hide everything outside of the Artboard" so I can see what the finished product will look like?

I know I could print them out or output to PDF and see it without the non-Artboard items, but these approaches seem clumsy and labor intensive. I'd like it if I could have some sort of "cropped view"--where everything not on the Artboard is hidden--to work in.

View 28 Replies View Related

Illustrator :: Saving CS6 With More Than One Artboard

Aug 28, 2012

I'm finding that when i add a second artboard to an existing ai, then save and close, it has disappeared on reopening.
 
I have both pieces of artwork (one for each page), but 1 of the artboards will have disappeared. Irritatingly the remaining artboard sits between the 2 pieces of artwork - in the wrong position for both!!!

View 6 Replies View Related

Illustrator SDK :: Finding Art From A Particular Artboard?

Nov 13, 2013

I am struggling with the "sAIArtSet->MatchingArtSet()" in restricting it to find the artset from the selected artboard only.
 
One way is to iterate through the found art set and compare art's artboard index with the index of the selected artboard. Wanted to know if there is some internal SDK suite which does this iteration in a more optimized way ?

View 4 Replies View Related

Illustrator :: CS5 Will Not Export To Artboard?

Mar 3, 2013

Illustrator cs5 will not export to artboard, even though the artboard is properly set and "Use artboards" is clicked in export dialogue box.
 
Bleed areas are set and crop marks, all of which print fine. But I want to export to jpeg just to see how the cropped output will look.

View 2 Replies View Related

Illustrator :: How To Save Artboard As JPG But Not As EPS

Apr 16, 2012

I have tried googling this and am able to save each artboard as a jpg but not as an eps or ai file.

View 6 Replies View Related

Illustrator :: How To Get Rid Of Black Border Around The Artboard

Feb 9, 2013

I need to get rid of the black border around the artboard. The two images show my drawing lined up with the art board and then inside the artboard. The dark gray is not the artboard.
 
As you see, the artboard has a black border. I need to get rid of it. It shows up in my project when my color key is green. The black won't go to transparent.
 
So how-to get rid of the border?
 
I figured it out. View > Hide Artboards.

View 1 Replies View Related

Illustrator :: Content Not Moving With Artboard

Dec 19, 2012

when I try to rearrange artboards most of the content doesn't move with it.How do I change the content to be associated with a specific artboard?

View 3 Replies View Related

Illustrator :: Shrink Artboard To Fit Content

Jul 4, 2008

I've been searching everywhere for a script or plugin that will shrink the artboard to fit the content. Fireworks has a feature like that.

View 32 Replies View Related

Illustrator :: Custom Shaped Artboard Possible?

Aug 1, 2013

is it possible to make a new document and instead of having it shaped like a rectangle/square, to have it shaped like a octagon? I'm making a square shaped business card, but I want the right side of the card to have a zig-zag pattern cut out on it.

View 2 Replies View Related

Illustrator :: Save PDF As Artboard Spreads?

May 7, 2013

I have setup a display panel with 4boards at various sizes. (Spreads). I now need to make a PDF but as artboard spreads as this is needs to be shown like this for sign off.
 
Illustrator cs6

View 3 Replies View Related

Illustrator :: Artboard Name And Save For Web Or Export

Feb 22, 2011

When saving for web or exporting an artboard is there any way to pre-populate the save file name dialog box with the artboard's given name. It would save having to re-name the file and make good use of that metadata.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved