Illustrator Scripting :: Batching SaveAs In CS6 Will Not Save PDF Compatible
Sep 12, 2012
So I'm using a script that I wrote to bring in files that were converted from CorelDraw to EPS (this is the best conversion process to preserve text and drawing assets). Basically the script takes the art in the EPS, groups it, places a rectangular border around the art and centers them. We do this so that they come into InDesign correctly sized. The problem is, it used to be 100% automated, just about, however now the saveas action command will not remember that "Save as PDF Compatible" needs to be set to true. When I do a saveas command, it's check by default, but when the saveas command is batched, it does NOT do it that way. When I try to bring batched AIs into InDesign, it's text that says it was not saved as PDF Compatible. Am I going to have to script a save function to get control of the saveas settings? I don't understand why PDF compatible is checked by default, yet batching saveas saves as if it unchecked it.
View 5 Replies
ADVERTISEMENT
Aug 29, 2013
I need to hide/disable the "save As" and Save option in the "illustrator application CS5" menu via scripting.
View 6 Replies
View Related
Nov 12, 2012
I need to save an EPS that's in CS6 and make it compatible for CS5.
View 6 Replies
View Related
Oct 9, 2013
I have a VBA script that opens a .DXF file in Illustrator, and want to save it as an AI file. How do I do this?
View 14 Replies
View Related
Jul 9, 2013
When I save the file as EPS , I want to enable all the options in EPS Options Pallet. I have enabled all options except setting high resolution in Transparency option.
View 2 Replies
View Related
Nov 7, 2013
I'm trying to create a script to save a file that is already open in the same directory with a different name.
Example: nome_0000_art to nome_0000_closed
I tried to create from another script that saves EPS but as I am new to the subject could not make it work
how do I perform the command saveas automatically without showing the dialog window by changing the file name?
View 7 Replies
View Related
Sep 19, 2012
I am working on a plugin application, in that saving Image files on a specific location by using JSX file.I have done with that but it works only with local drive.I want to save that file on my Network Share by using JSX.
View 10 Replies
View Related
Mar 13, 2013
I recently found the following jsx script, which saves a multi-layered IL file into 1-layer-per-file with PNG format.
This file is very useful, but i'm currently working on a project that requires the files to be saved into SVG format.
Is there anyway to edit this script to save the files as SVG instead of PNG?
// *** Export Layers as PNG files (in multiple resolutions) ***
//
// Version: 1.0 (29 Aug 2012)
// Copyright Arcticmill 2012
// www.arcticmill.com
// Developed by: Johan Otterud
//
// This script will export all layers that have a name starting with "#", or "%" into a subfolder of the current .ai document.
// These options can be configured below:
// *** Config options ***
var subFolderName = "Export";
[Code]...
Remember that you must add a "" + exportLayersStartingWith + "" (when exporting the layer cropped to it's bound) or "" + exportLayersWithArtboardClippingStartingWith + "" (when layer should be clipped to artboard) to the beginning of the layer name. Also make sure that they layers you want to export are not locked or hidden.");
} else {
// Show a completed message
alert(layersToExportCount + " layer(s) was successfully exported to:
" + exportDirectoryPath);
}
[Code]....
View 4 Replies
View Related
Jan 14, 2014
So I deal with a lot of files each day that need to be saved according to their lead code, meaning that there is a folder that holds thousands of sub folders that have the same name as this lead code on a server.
So since I have the lead code in the file name I'm trying to use that in conjunction with the file path to tell illustrator where to save it with Javascript. Also the idea of a dynamic save path is useful.
Here's what I've got so far, it's not working yet but I feel like I'm close.
/*/////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
Dynamic Save Path////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////*/
#target illustrator
[Code] ......
View 1 Replies
View Related
Oct 8, 2012
I want to save Current open Document on remote location (on server).
I am able to save it on my local machine(the machine i am presently working on).
Now I want to save it on some remote server.
I am using following code for that:
var doc=app.activeDocument();
var aiSaveOptions1=new IllustratorSaveOptions();
var aiFile1 = File( '/osn-pc-16/adobe/1/Original.ai' );
doc.saveAs(aiFile1,aiSaveOptions1)
View 7 Replies
View Related
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
Mar 24, 2012
I'm using Illustrator for work and I love it, I never needed scripts yet. Now I have couple houndred svgs coming in per day, I would like to have a script that opens every svg one by one in the selected directory and add them to a pdf as pages of the same size and than save it.
How many files I could put in 1 pdf this way?
I'm using Illustrator CS5 on Win7 x64.
View 7 Replies
View Related
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
Oct 8, 2012
I want to open a "Save File Dialog " with some default path.Like when user run that script I want to open a "Save As" dialog box with default path "/Volumes/<shared name>/<folder name>/.. ."I am using File.SaveDialog(prompt, filter);
but it doesn't open to the location by default that I want to open.
View 2 Replies
View Related
Apr 16, 2013
I tried following action script code to save PDF file with color profile attached:
var saveOps: PDFSaveOptions = new PDFSaveOptions();
saveOps.colorConversionID = ColorConversion.COLORCONVERSIONTODEST;
saveOps.colorDestinationID = ColorDestination.COLORDESTINATIONWORKINGCMYK;
saveOps.colorProfileID = ColorProfile.INCLUDEDESTPROFILE;
doc.saveAs(pdfFile, saveOps);
But got following errors: error an Illustrator error occurred: 1346458189 ('PARM'). What is the correct way to save PDF file with color profile?
View 1 Replies
View Related
Dec 18, 2012
I'm try to automate the importing of the Varaible and datasets into my graphs via Scripting, but the ImportVaraibles() function doesn't seem to work. Here is my Script, mostly copied from the example script provided with Illustrator (CS5). And, this works manually, using the file names in the script, via Load Variable Library
Set appRef = CreateObject(strIllistratorVersion)
'Open the file and import the datasets
Set docRef = appRef.Open(strTemplate & "200-500.ai")
'docRef.Datasets.RemoveAll
docRef.Variables("Yearbook").Delete
Here is the problem, after I delete the previous library, then this next line, right from the example, does nothing
The script then exits with 'No Datasets in this document'
docRef.ImportVariables (strXMLFolder & "Lumber_200-500.xml")
'appRef.DoJavaScript "alert('Template:" & strTemplate & strRange & ".ai | XML file:" & strXMLFolder & "" & objFile.Name & "^')"
If (appRef.Documents.Count > 0) Then
Set docRef = appRef.Documents(1)
[Code]....
If I remove that delete line, the script runs, but just uses whatever Variables I had last loaded, not the XML file.
It's simply not loading. What do I need to do to get it to load?
View 8 Replies
View Related
May 6, 2012
Can you access graph data through the scripting DOM?
View 3 Replies
View Related
Dec 10, 2013
I was interested in purchasing Adobe illustrator CS6. I've read around and it seems that some people have issues with Adobe Illustrator CS6 on Mountain Lion.
Would it run on Mac OS X 10.8.5 ?
View 1 Replies
View Related
Jul 11, 2013
To save backward compatible doesn't work in CC. I can't open the file in CS6. Why?
View 11 Replies
View Related
Dec 15, 2013
My old computer finally died, and so I just bought a new iMac with OSX Mavericks... I am wondering if my old Illustrator CS can be installed into my new iMac and if it would be compatible with OSX Mavericks? (I successfuly reinstalled my Photoshop CS4 and it is compatible with OSX Mavericks, but I am skeptical that such an old version of Illustrator will also install successfully)
View 1 Replies
View Related
Mar 13, 2014
the CS6 versions allowed open Illustrator files in Fireworks, but are not compatible with CC.
View 1 Replies
View Related
Jan 31, 2014
We first get a digital proof form printers as .pdf. Sometiems they save them with PDF compatible on. This makes my job harder because will get ilustrator asking for all the links when opening the .pdf.
What we do is open the .pdf form the printere, adn paste this on topof our orignal .ai file. This is to proof what theyt changed. Adding in theri product numbers, adn updating the UPCS is about all we want to see. What we look for is shifting type, or missing elelements.
Mas OS 10.8.4, AI CS5
View 1 Replies
View Related
Feb 12, 2014
After reinstalling multiple times, uninstalling Wacom drivers, etc. -- tracked it down to a plugin.The newest update for AI CC is not compatible with the Silhouette Studio plugin.
Not a happy camper over lost time and productivity, but fortunately I had my CS5 disks.
View 4 Replies
View Related
Aug 15, 2013
I need to send a file I have completed in CS6 Illustrator to someone who does not have the program - they are using CorelDraw.
View 4 Replies
View Related
Dec 4, 2013
I was working with Illustrator - InDesign as usual. At the moment of linking my AI file into InDesign, I got this message 8 times in an A4 size frame:
"This is an Adobe® Illustrator® file that was saved without PDF content. To place or open this file in other applications, it should be re-saved from Adobe Illustrator with the "Create PDF Compatible File" options turned on. This option is in the Illustrator Native Format Options dialog box, which appears when saving an Adobe Illustrator file using the Save As command."
Weird... I have never seen this before. I resaved the file, and it keeps happening. I see no such option as "Create PDF Compatible File" when saving just an AI file... I am not trying to make a PDF!
I have done the same procedure linking other AI files into this ID file and it is working as usual. Is just this very one. And it doesn't seem particulary different from what I do everyday...
I finally made a PDF from the AI and placed it into InDesign. But everytime I have to update the AI..
View 5 Replies
View Related
Jan 6, 2014
can you confirm if the CS4 version of illustrator will work on a 64bit version of Windows 2012 TS?
View 1 Replies
View Related
Feb 16, 2014
Are brushes/sets created in CC compatible with CS and/or older versions of Illustrator +Photoshop?
View 1 Replies
View Related
Mar 16, 2013
the Script of creating mirror text and stroke text in Adobe illustrator scripting.
View 4 Replies
View Related
Apr 12, 2013
CS6 illustrator and photoshop not allowing me to open documents due to different reasons...damaged files, badly formatted, not compatible etc. However, these files were all created on the same computer and program therefore should be compatible. Is there a way for me to fix these files/prevent this from happening in the future?
View 1 Replies
View Related
Oct 15, 2013
Does Saveas really need to be case sensitive. I just spent a lot of time trying to figure out why my addin wasn't working and all that was wrong is I had a capital P on png.
Dim sPath As String = System.IO.Path.GetDirectoryName(sIDWName) & "PartsLists"
Dim sFileName As String = System.IO.Path.GetFileNameWithoutExtension(sIDWName) & ".Png"
vs
Dim sFileName As String = System.IO.Path.GetFileNameWithoutExtension(sIDWName) & ".png"
Dim sPNGName As String = sPath & "" & sFileName
MsgBox(sPNGName)
oCamera.SaveAsBitmap(sPNGName, 1124, 899)
View 1 Replies
View Related
Jul 21, 2012
I have a student that downloaded and installed the 2013 student version of AutoCAD. She then opened a drawing we were working on in class (2012 standard version) and continued to work at home. She is able to save that drawing by clicking the save button on the Quick Access toolbar, however she is unable to "Saveas" that drawing to a different name or different release. The dialog box resets the file name to a file path on her C drive as soon as you move the mouse.
The same thing happens when she goes to make a block - she can type a block name in the window, but as soon as the mouse moves, the name changes to a block name already in the list.
View 2 Replies
View Related