Illustrator Scripting :: Move Layers To New Artboard

Feb 18, 2013

I'm trying to create a script via javascript for Illustrator.
 
My problem is : I have a AI file with multiple layers, i want to create one artboard per layer, in order to export a multipage PDF ( each page contain 1 layer ).
 
The layers represents the differents type of print ( vernish, color, hot gold, pressure ... ) and/or color type ( Pantone, CMYK, cut, kisscut ... ). My client want a PDF for see each type of print or color type per page.
 
I'm trying 2 ways :
 
1st solution : Create new artboards, and duplicate ( or move ) layers content on the new artboad, but the function move/duplicate don't work to move content on another artboard.
 
2nd solution : Create new document with the same number of layers as artboard and duplicate layer to the new artboard on the new document.

View 6 Replies


ADVERTISEMENT

Illustrator Scripting :: How To Duplicate Artboard And Move It Relative To Original

Oct 23, 2013

Basically, I have an open AI document and would like to duplicate its artboard and then move it to a new position(X axis, 50pixels away from the original). Doesn't seem too hard, but I can't figure it out. This is for CS5.  
 
var docRef = app.activeDocument;
var abSrc = docRef.artboards[0];
var abSrcX = abSrc.artboardRect[0];

[Code]...
 
Taking that into account if I add (1224 + 144) to abSrcX and abSrxW it creates another artboard 2" away from the previous at 17" x 11". If I want to run it again, I just to add (1224 + 144) to abSrcX and abSrxW again. Now to figure out how to do this dynamically on the fly.

View 5 Replies View Related

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 Scripting :: How To Get Dimensions Of The Artboard

May 23, 2012

I want to write a script for Illustrator that will apply a step and repeat as a transform effect based on the dimensions of the artboard. I've figured out how to get the dimensions of the artboard, but I'm at a loss as to how to apply a transform effect with a script. It looks like it might be in the Matrix suite, but none of the descriptions there make much sense to me.

View 7 Replies View Related

Illustrator Scripting :: Group Objects On Artboard

May 27, 2013

When i call the method selectObjectsOnActiveArtboard on an artboard, is there a way to easily group all items in the selection? Like in the menu found under "right click > group"

View 4 Replies View Related

Illustrator Scripting :: Printing Artboard Only With VBScript

Apr 17, 2012

My script creates an artboard in my pdf file. i need to print this artboard only.
 
if i go to file/print manually there is an option 'Bereich' (pls see screenshot, my illustrator is in german language), so only the 2nd page is printed. (exactly what i want)

up to now i could not find this option (or something similiar) within vbscript.
 
code:
...
appRef.ActiveDocument.Artboards.Add(Array(Rminx,Rmaxy,Rmaxx,Rminy)) ' vars are correctly set before
Set jobOptionsRef = CreateObject("Illustrator.PrintJobOptions")
Set printOpts = CreateObject("Illustrator.printOptions")
printOpts.JobOptions = jobOptionsRef
jobOptionsRef.Designation = 2 'aiAllLayers
jobOptionsRef.PrintArea=2
appRef.ActiveDocument.PrintOut printOpts
....
 
these lines prints 2 pages: 1) main document  2) artboard
 
if i set
jobOptionsRef.Designation = 1
only the main document is printed - but not the artboard. i need exactly the other way round, only the artboard but no main image.

View 2 Replies View Related

Illustrator Scripting :: Copy To New Artboard With Transformation In VBA

Aug 20, 2012

I have the common problem to resize the artboard to standardize technical illustrations to the format 50x50mm.
 
I would like to group the objects for further transformationsI would transform the group to 45mm and scale stroks and effectsN.B.: here It should be a test on landscape format
 
I would align the group to the page center 
 
Public Sub copy_paste_with_transformation ()
'Duplicates grouped items in a new document with landscape sensitive transformation
Set appRef = CreateObject("Illustrator.Application")
 
'calculate the size of objects do define if it's landscape or not
Bounds = appRef.ActiveDocument.VisibleBounds
 
[Code] .....

View 4 Replies View Related

Illustrator Scripting :: Copy Artboard (and Art) To Another Document

Jan 25, 2012

Is there a way to write a script to copy a selected/chosen artboard (and it's contents) to another opened document, placing it in exactly the same place on the global x/y coordinates?  I'm either unable to find this feature built in to Illustrator, or it's simply missing. 

View 35 Replies View Related

Illustrator Scripting :: Find And Replace Artboard Name

Mar 26, 2013

Is it possible to use a JS script to find/replace artboard names?  For example if I have artboards that are currently named 39 and 42...can I use a script to change the name of the art boards to 39E and 42C etc?
 
Also part of the script a simple find/replace of text on locked layers.

View 4 Replies View Related

Illustrator Scripting :: Export Artboard As A JPEG

Jan 29, 2014

See title - is this possible?
 
I've made this small script to test a few things, before moving on to the bigger stuff (some of it have been cut out, since it's not important):

        var exportOptions = new ExportOptionsJPEG();
        var type = ExportType.JPEG;
        var fileSpec = new File(dest);
        exportOptions.antiAliasing = false;
        exportOptions.qualitySetting = 70;
        exportOptions.artboardRange = "3";
        app.activeDocument.exportFile( fileSpec, type, exportOptions );
 
I'm trying to export artboard #3 as a JPEG. But it doesn't work.

According to the scripting reference guide, most of the "ExportOptions"-functions support the artboardRange-parameter, but alas - JPEG does not.
 
Is there another way to do this? Right now I'm only getting all the artboards into a single JPEG-file, which is not what I'm searching for

View 4 Replies View Related

Illustrator Scripting :: Add Artboard To Existing Document?

Mar 2, 2014

What is the javascript to add a new artboard to an existing Illustrator document?

View 2 Replies View Related

Illustrator Scripting :: Applescript Export Artboard As PSD

May 25, 2013

How can i export only the artboard as PSD? When i use this script a lot more is exported.

with timeout of (10 * 60) seconds
tell application "Adobe Illustrator"
activate
set dpi to 90 as text
set documentnaam to name of current document

[Code] ....

View 1 Replies View Related

Illustrator Scripting :: Select Objects Outside Artboard Using JavaScript

Aug 10, 2013

I want to select the objects outside artboard using javascript. Their are many objects outside activeartboard i want to select all those object using script.

View 1 Replies View Related

Illustrator Scripting :: Select All On Artboard And Copy To Clipboard VBA

Apr 7, 2012

Is there a way to select everything on the artboard and copy it to the clipboard using VBA?

View 3 Replies View Related

Illustrator Scripting :: Align Selected Objects To Artboard

Nov 15, 2013

Simple solution to aligning selected items to the artboard. I was going to create an action but then realized it would be more convenient for me to include it in my script file....I have a script to align objects with each other but they dont align to the artboard.

View 11 Replies View Related

Illustrator Scripting :: How To Place Textframe Central To Artboard

Apr 15, 2012

This is my very first attempt at a script: 
 
* this script will prompt  the user for a file name and location and then save the current file as a .pdf with secure save options*/
var curDoc = app.activeDocument;
var destName = prompt ("Enter a Filename Daniel", "", "Save With  Security");
var destFolder = Folder.selectDialog('Select which folder to save to :');
saveFileToPDF(destFolder+ '/' + destName); // not sure if i need this here ?

[Code] .......
 
i can do the math of (artboard width)-(text width) / 2 is start point of text but how do i find out the text width and the artboard width?

View 11 Replies View Related

Illustrator Scripting :: Making Object The Artboard Size?

Jan 24, 2012

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 useful 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.
 
Below is a script that I saw on here that I believe may contain what I need but now knowing programming. 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. 
 
#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)

[Code].....

View 23 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 :: Add Image Link Filename To Each Artboard

Jan 24, 2014

I have a document with several artboards. In each artboard is a different linked image. Is there a way to add the linked filename to the bottom of each artboard?

View 10 Replies View Related

Illustrator Scripting :: Put Artboard Names In Text Boxes?

Dec 2, 2013

I have an Illustrator document with ~100 artboards, each artboard named by me. Each artboard has one textbox in it. Is there a way to take whatever name I assign to the artboard and print it into the text box inside that artboard? So in the end I would be able to see the name associated with each artboard on the artboard itself. Ideally I could run the script once (i.e. "turn it on"), have it populate all the text boxes with the artboard names, and then have it dynamically update the textboxes when I change an artboard name regardless of whether the file has been closed and opened since I originally ran the script.

View 26 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 Scripting :: Select Items On Multiple Artboard

Sep 27, 2013

I have script where I select items on multiple artboard but I can't seem to get get active art board of the selected item. Is this possible?
 
each artboard has a text item and I would like them in the same position on each of their own artboards that they are already one. right now it adjusts them all to one artboard. here is what I have so far
 
doc = app.activeDocument;
for(i = 0; i < selection.length; i++){
    var firstItemPosition = doc.selection[0].position;
    doc.selection[i].position = firstItemPosition;
    var activeArtboardIndex = doc.artboards.getActiveArtboardIndex();
    alert(activeArtboardIndex);
}

View 10 Replies View Related

Illustrator Scripting :: Set To Save Multiple Thumbnails To XMP Packet By Artboard

Jul 19, 2012

Is it possible to save illustrator XMP thumbnail previews by artboard? It seems like Illustrator saves a single thumbnail with all art regardless of the number of artboards.
 
If there is a property that can be set to save multiple thumbnails to the XMP packet by artboard when saving to a native Illustrator file?

View 3 Replies View Related

Illustrator Scripting :: Select All The Objects In Active Artboard Using JavaScript

Aug 7, 2013

i want to select all the objects in active artboard using javascript

View 5 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 Scripting :: Assign Values To Artboard And Save Within Document?

Oct 14, 2013

Is there any chance to assign values to an artboard?
 
I've experimented with “tags”, but they only work for pageItems. (if the item which includes the stored data is deleted, the data is also deleted)
 
It is simple data like v1=true, v2=false, … I want to assign. And it needs to be saved within the illustrator document.

View 4 Replies View Related

Illustrator :: Move Text From One Artboard To Another?

Nov 13, 2012

I have 3 artboards open and am trying to move text from one artboard to another, each piece of text is on a different layer, but when I use the selection tool and just drag it across to the next artboard, nothing shows up.  How do I move text from one artboard to another?

View 1 Replies View Related

Illustrator Scripting :: How To Copy Specific Area (Artboard) And Paste It To New Document

Apr 2, 2013

Is it possible to copy a specific area (Artboard area) and paste it to new document by using JSX.

View 1 Replies View Related

Illustrator Scripting :: Relink Multiple Images And Link Filename To Artboard

Jan 21, 2014

I have been looking for a solution to automate a printing and ordering process. I have a design template with 2 pages both 8.5x11 in size. One page represents the front and other the back for double sided printing. I have 6 different images per sheet so in my links panel I have 12 total links, 2 of each. I was wondering if there is a script to update all the links with the same filename with other image? Currently I have to search through all the images and update each one.
 
I have 6 artboards dividing the 8.5x11 sheet proportionatly. Each artboard represents a different order. Is there a script to write the linked filename to the bottom corner of each artboard?

View 5 Replies View Related

Illustrator :: Toggle For Move Artwork With Artboard?

Sep 17, 2013

Apart from hiding or locking component layers/objects, is there another way to toggle the feature that moves artwork with the artboard when one performs transformations on artboards? I once experienced a session on the mac (AI CS6) where my artwork was not moving when my artboard was (this despite the layer being printable, unlocked and displaying correctly)

View 2 Replies View Related

Illustrator :: Move Artboard Along With Its Content To Another Document?

Jun 8, 2011

Is it possible and if not what's your fastest way to recreate that on another document with different artboard/s on a differnt place in the workspace?

View 3 Replies View Related







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