Illustrator Scripting :: CS5 - Batch Saving AI Files As Low Res PDFs
Nov 20, 2012
I need to find a way to convert a LOT of ai files, individually, to low res pdf's. Preferably with the presets I want, not some defaults. I'm not interested in an action. I was hoping for a droplet, script, or something similar.
I did find this and it looked promising... [URL] ....
That almost worked. Ultimately, for some reason, it couldn't see the ai files sitting in the specified folder.
Running CS5 with MacOS 10.8.2
View 2 Replies
ADVERTISEMENT
Jan 5, 2013
Prior to printing my work, I save PDF versions of my files. More often than I'd like, when I print the PDF file from my computer, some of the graphics do not print correctly. For example, a portion of a curved graphic (like a swirl) might be cut off leaving a blunt straight edge. Have issues with PDF files? Is there anything I can do to control this quality issue?
View 1 Replies
View Related
Nov 25, 2012
I found a script that does the job, export tones of ai files to pdf, but I have some files which are in sub folders, and I was trying to find a way to modify this script to include subfolder, but no luck.
Adobe permits you to use, modify, and distribute this file in accordance with the termsof the Adobe license agreement accompanying it. if you have received this file from a source other than Adobe, then your use, modification,or distribution of it requires the prior written permission of Adobe.
This sample gets files specified by the user from the selected folder and batch processes them and saves them as PDFs.
Edits by Patrick Mineault:
- only .ai files processed
- files saved in same folder as the input files
- export files have name (oldname).pdf
- PDF settings: editable / acrobatLayers=true for maximum compatibility with Preview
// Main Code [Execution of script begins here]
// uncomment to suppress Illustrator warning dialogs
// app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
// Select the source folder.
sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator .ai files you want to convert to PDF');
[code]...
View 11 Replies
View Related
Mar 20, 2012
I have a couple thousand AI authored EPS files with a specific swatch name (SpotBlack) that I would like to rename (black) -- is there any method to do this en masse, preferrably outside of Illy using a text editor?
View 7 Replies
View Related
Oct 3, 2011
I created an Action to batch export a folder of .ai files to create 300dpi .png's of the .ai file's artboard. I did this by simply recording "Export...as png" with my desired settings then Batch running the Action on desired folder of .ai files. The files were successfully exported, the trouble is that the exported files lack a .png file extension. My intent is to take these PNG files and merge them into a single PDF using Acrobat Pro. Unfortunatly, without the .PNG extension, Acrobat Pro does not recognize the file types and does not let me use the Combine Files feature on them. Going back and manually adding a .png at the end of the exported files defeats the time-saving purpose of Batch Processing all together. Is there something I am missing or doing incorrectly? I have included screenshots of 1) My Batch Action settings 2) folders showing files without .png extension and 3) visual of what I see when I am trying to combine PNGs into a PDF.
View 4 Replies
View Related
Nov 15, 2013
I need to take a batch of pdfs and remove the links associated inside the file so they stay static.
View 4 Replies
View Related
Jul 7, 2010
In Adobe Illustrator CS5, you now have the capability give a name to each artboard in your illustrator file. I understand that you can easily save each artboard as separate AI files but I would like to save them as separate PDFs instead.
Any script, or know the actual method of doing so? All I can possibly theorize is to save the artboards as separate PDFs and then have Acrobat convert those artboards to PDFs.
View 6 Replies
View Related
Jun 4, 2012
I am trying to batch plot to PDF's from a drawing file that has multiple tabs in it. I would like each tab to be a separate PDF file. We are utilizing Acrobat X to write the PDF's. AutoCAD places all of the tabs into one file whether I tell a Multi-sheet file or a Single-sheet file.
View 6 Replies
View Related
Sep 26, 2013
i can´t get any Batch script to run.For example a PDF making Batch with a folder selection.I always get the alert, no matching files found.I use cs 5 on a g 5 with osx 10.8.2..why does no file fit in the "mask" ?
Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. If you have received this file from a source other than Adobe, then your use, modification,or distribution of it requires the prior written permission of Adobe.
Export to PDFs.jsx
DESCRIPTION
This sample gets files specified by the user from the selected folder and batch processes them and saves them as PDFs.Edits by Patrick Mineault:
- only .ai files processed
- files saved in same folder as the input files
- export files have name (oldname)_export.pdf
- PDF settings: non-editable / acrobatLayers=false
for maximum compatibility with Preview
// Main Code [Execution of script begins here]
// uncomment to suppress Illustrator warning dialogs
// app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
// Select the source folder.
sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator .ai files you want to convert to PDF');
[code...
View 9 Replies
View Related
Jul 24, 2013
i'm totally new to scripting. i have a bunch of illustrator cs5 files (actually some of them might be older cs versions). they all have an artboard size of 200 x 200. i need to resize them to 700 x 700 and save them as png24 preserving transparency and keeping the same file name. is this possible? if so, any examples?
View 1 Replies
View Related
Jan 27, 2013
I am trying to write a script that can batch EPS to high res JPG (20 MP and over). I can set this up basically, but I have run in to a few problems.
The maximum scaling in jpeg export options is 776%, but some of my EPS files are very small in size - so 776% does not create 20MP rasters.
So, I need to find a way to enlarge both the vector and the artboard to a larger size before exporting for jpeg.
View 6 Replies
View Related
Oct 16, 2013
I'm looking for a script that can convert .ai/.eps to PNG from subfolders or multiple level of subfolders. i found this awesome script posted a year ago here by Larry G. Schneider [URL] however it doesn't get the files from subfolders, just the one folder you specify.
View 2 Replies
View Related
Jan 29, 2009
I am using Bridge and Photoshop CS3. I have dozens of raw files that need to be saved as .tifs. They don't need any adjusting; just a simple save as tif. Is there a way to do that in one batch without setting up my own action?
View 1 Replies
View Related
Nov 23, 2005
i often scan in images, roughly 50 at a time, in the order i want them saved/numbered in. When i go to batch save, (along with some color correction and other small things) it numbers my files from the LAST image i scanned in to the first.. IE; what should be image50.jpg is image01.jpg and vice versa.. basically its doing the naming in reverse.
I never had this problem in PS7, only since moving to CS2.
View 5 Replies
View Related
Nov 29, 2011
I'm looking for a script/program that if you run it, all the .eps files in a folder will batch convert to a png-24 with 250% scale.
View 20 Replies
View Related
Feb 15, 2010
is there a quick way how to renumber or batch rename all layers in a file so they would be named in consequent numbers? Doesn't have to start from exact number, I was wondering if maybe there is some sort of script that would work?
View 24 Replies
View Related
Nov 1, 2013
I have a couple of thousand old cliparts in .wmf format that I have to convert to .ai. What I need to do is simply open the .wmf, store it as .ai in exactly the same location.
Actions didn´t work because the files are in mutliple folders and subfolders. "Actions" keeped saving all the ai-files in the same folder. Which is kinda weird since this doesn´t happen when using the same action in PS.
Sure, there are some quality issues with converting wmf to ai - but for what we´re plannning the quality is sufficient.
CarlosCantos script at [URL]..... looked like the thing to do. Loaded it in apple script, patched the lines to open .wmf and saved it in the Illustrator script folder, but all I got was a bunch of error messages.
View 10 Replies
View Related
Apr 4, 2012
is there a way to save extendscript color pref? I am trying to make it so I don't have to update them every time I change machines.
seems like they should be saved in defs.xml (under Contents > SharedSupport > Required), but this file doesn't seem to update after I make my changes.
View 6 Replies
View Related
Jan 6, 2010
AutoCAD MEP 2010
I've used batch plot to make pdf copies of my drawings in version 2004 and did not have this issue:
In 2010 when I use batch plot to pdf (say for 5 drawings), it produces one single pdf file with 5 sheets. I want an individual pdf file for each drawing (5 pdfs).
I don't want to have to open each drawing and plot. That's what batch plot is for!
View 7 Replies
View Related
Oct 9, 2012
And is there a maximum number of files allowed in a batch?
View 2 Replies
View Related
Mar 21, 2012
What Acad2010 or Trueview 2012 uses to create it's bacth PDF's? We got a new plotter last week and it seems to have corrupted that driver somehow. We are no longer able to create batch PDF in either Acad or Trueview. We using both Win XP and Win 7 machines. I don't know if the plotter had anything to do with this problem it just seem that this happend the same time as we installed the plotter. I can use a 3rd party PDF maker to make individual PDF but this takes time, the batch PDF is much more useful for me. I'm hoping I can get the generic PDF driver that autocad uses and reinstall that, but I don't know what it is or where I can find it.
View 6 Replies
View Related
Dec 20, 2012
A simple action.
File>Export>.bmpClose
If I run the action on one file, it works perfect.
If I try to run it as a batch, it creates the bmp files fine.
But it also creates either a .ai file, or two .eps files!
Writing one or two extra files signifiantly shows the process down.
After I run the batch it is not hard to simply delete the extra .eps/ai files of course.
But writing those files seriously slows the process down, and I have about 89,000 more files to go.
Illustrator CS4. Windows XP
View 1 Replies
View Related
Jun 17, 2011
We have Adobe Acrobat Pro which has a plugin to allow batch plotting of PDFs from multi-sheet drawings. Works awesome in Autocad 2009 and before. It DOES NOT work with Autocad 2011!
We have drawings with 70 sheets and it's nice to print the entire document to a single PDF in one step. Takes less than one minute in Acad09. Nice!
View 5 Replies
View Related
Jul 25, 2013
I'm using Illustrator CS6. I have an artboard with 200 of the same placed file. I now want to use this same layout for 30 other views, they are the same size, but different images. If I relink them I have to click through each one. I tried using a script I found on here by Carlos:
#target Illustrator
// script.name = relinkAllSelected.jsx;
// script.description = relinks all selected placed images at once;
// script.required = select at least one linked image before running;
// script.parent = CarlosCanto // 7/12/11;
// script.elegant = false;
[code].....
and I get an
error 25: Expected: }.
Line:10
-> p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 12.0px Times}
I'm on a mac, os x 10.6.8. and I copied the script into the script preset folder so its starting from the drop down menu. Don't think I'm leaving anything out. I'm swapping 1 placed(linked) PDF for another.
View 5 Replies
View Related
Jul 29, 2013
When I save a PDF file in Photoshop CC in CMYK color with JPEG compression (quality = high), it will save without any errors. However, when I open the file in Acrobat, I get an "Out of Memory" pop up error. I press Ok, and the document is just displayed as a blank white image.
I'm using Win7 64-bit, Photoshop CC 64-bit. Plenty of memory (24GB) and allocated RAM in preferences, and I've done some troubleshooting that leads me to believe the error is not due to system memory, but rather a specific bug in the software. I have Photoshop CS6 on the same machine, and if I open the PSD, save as PDF with the above settings, everything is fine when I open it using Acrobat. This seems to just be for Photoshop CC, not CS6.
Here is the troubleshooting I've done so far:
PDF format, RGB color, any other settings --> Acrobat can open the file.
PDF format, CMYK, no compression --> Acrobat can open the file.
PDF format, CMYK, JPEG compression [medium] --> Acrobat can open the file.
PDF format, CMYK, JPEG compression [high] --> Acrobat can NOT open the file because it encounters the "out of memory" error.
PDF format, CMYK, JPEG compression [maximum] --> Acrobat can open the file.
View 9 Replies
View Related
May 1, 2013
Looking for a way to convert a directory full of .ai files to SVG.
Is there a batch process similar to what fireworks has?
View 1 Replies
View Related
Oct 11, 2012
There is no way to export PNG-files with a higher PPI than 72. I saw a thread that you could scale the pictures when exporting then script to open Photoshop and resize them? This is the last step in my big script and if i cant get this to work i cant use it.
View 3 Replies
View Related
Jul 6, 2013
Is there a way to open a file as a layer? I want to open multiple files in the same window to make a collage. Currently, as I open each file they all open in separate windows. The "Open Document As Tabs" option in the User Interface preferences is not selected.
View 1 Replies
View Related
Mar 8, 2013
I'm writing a Javascript to run at startup. I want to check for the existence of XML files and process them, if they are available. How can I check for their existence?
View 6 Replies
View Related
May 5, 2012
I would like make a config file for my script that i would like to put in the %appdata%adobe folder.
How can i reah the value of %appdata% inside javascript?How do i create and read files?
I am currently reading the Extendscript javascript toolsguide but i cant figure out how to create a file:
Should not this code create a file in C: directory?
Fille = new File('C: est.txt');
Fille.write("Testwriting!");
Fille.close();
View 10 Replies
View Related
Feb 13, 2013
I am running a batch action that deletes some art from WMF files, and then saves them. When I run the batch, I am prompted to save an .AI file which is named the same as the WMF files that I am processing. This occurs every for every file, stopping the batch to prompt for saving the .AI file.
View 2 Replies
View Related