Illustrator :: CS6 Running Action On Multiple Files In A Folder

Jul 19, 2013

I created a action in Illustrator CS6 (on a PC) which opens PNG files, scales them onto a 8.5 x 11 page, saves them as a PDF into a output folder on my desktop and then closes the page. The action works great and does exactly what I had hoped for.

Here is my issue: I now have a need to do this on multiple files at the same time. Using the Illustrator Help menu, I found out about Batch processing. The tutorial says that a batch can be run on a single file or on a folder of files. Bingo! That's what I want. Problem is, I can't get it to work.
 
After setting up the batch with the following settings: (note: I didn't use a destination folder because I have the action saving the pdf into an output folder on the desktop).

According to the help page, it said to use Override Action "Open" commands which Opens the files from the specified folder and ignores any Open commands recorded as part of the original action. I thought this is what I needed to open all the files in the folder, because when recording my action, I had to use the open command to open a png file. It wouldn't just let me choose a folder. If I don't have the open command in the action, nothing happens.
 
My main issue is getting multiple files from within my input folder to open when running the action. The only file that opens is the file that I recorded while creating the action. If I remove that file from the folder, nothing happens at all.

View 2 Replies


ADVERTISEMENT

Illustrator Scripting :: Action To Batch Export Folder Of AI Files To Create 300dpi PNG

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

Photoshop :: Running Multiple Batch Actions On Same Folder?

Jul 27, 2012

We run Actions on a group of images using CS4 with the File->Automate->Batch function. We use this to take, for example, 200 images from a set folder, run an action to change them into a different colour and save in a different folder, we need to do this 20 times on the same images running a different script each time to change them into a different colour and save them in the same folder (with different file extensions)
 
Is there a way we can instruct Photoshop to run all of these 20 scripts (one after the other in a queue as it where) without having to "Babysit" it and ask it to run each one off ourselves?

View 1 Replies View Related

Illustrator Scripting :: Adding Serial Numbers Apply To Multiple Files In Selected Folder?

Dec 19, 2011

How to make the following script for adding serial numbers apply to multiple files in a selected folder?
 
var docRef = app.activeDocument;
with (docRef) { 
var docName = name.substring(0, name.lastIndexOf('.'));
var artRight = visibleBounds[2];

[Code] .....

View 6 Replies View Related

Illustrator Scripting :: Set Folder As Relative Path To Where Script Is Running?

Apr 10, 2012

How do I set a folder as a relative path to where the script is running?

is there any easy way like in unix, starting without / ?or for example
 
"~/Desktop/"
 
"/users/<login>/desktop/"
 
seems that path to me is the only way...
 
is there an easy way to change posix paths to applescript??
 
I have this code:
 
tell application "Finder" to set templateFile to (container of (path to me) as string) & "Graficas FINAL ADQAT.ai"
 
with this error: error "No se ha encontrado el archivo Macintosh HD:Users:Vibra:Desktop:Graficas FINAL ADQAT.ai." number -43 from "Macintosh HD:Users:Vibra:Desktop:Graficas FINAL ADQAT.ai"
 
the file is there how I change the filepath to be compatible with applescript?

View 3 Replies View Related

Illustrator :: CS Running Very Slow On Saving Files

Dec 10, 2013

When I save any work I have completed to my desktop or to a server I get a response that my Illsutrator is not responding. Eventually it saves the document but it takes a very long time to do so.I have cleared my cache and mediabrowser.

View 4 Replies View Related

Photoshop Elements :: Process Multiple Files Says Folder Empty?

Jan 20, 2014

When I try to use the Process Multiple Files feature, it is giving me a message saying that the process was stopped or cancelled. Press continue or stop. When I click continue, it say that the folder is empty.  It is not empty.  This is  what I use all the time to put my watermark on my photos.

View 4 Replies View Related

Photoshop Elements :: Thumbnails Of Multiple Files In Folder Location Display

Nov 2, 2012

I have used Photoshop Elements 3, 5, 7 and 8.  In each one I could see the thumbnails of multiple files in the "Folder Location" display in Organiser.  Now in PE10 I can only see the thumbnails for one file at a time. Why and how I can display the thumbnails of all files in "folder locations?

View 2 Replies View Related

CorelDRAW Graphics Suite 12 :: Running Script Multiple Times Produces Multiple Copies?

Sep 1, 2011

I have this script that basically makes a shape expand by adding an outline, conveting the outline to an object, and then welding the whole thing together.

I have the script set to execute with hotkey ctrl+numpad+

The odd thing is, when I run it once, it seems to work fine and only one object is left, but when I hold down ctrl and press numoad+ over and over again, it seems to produce a new copy of the object everytime.

I'm not sure why this is happening, but I need to get it to stop. 

Sub Expand()    EventsEnabled = False        'Dim vars    Dim c1 As New Color    Dim OrigSelection As ShapeRange    Dim OrigColor As Shape    Dim width1 As Double    Dim height1 As Double    Dim minSize As Double    Dim Thickness As Double        'copy color of current selection    Set OrigColor = ActiveShape    If OrigColor Is Nothing Then Exit Sub    If OrigColor.Fill.Type <> cdrUniformFill Then Exit Sub    c1.CopyAssign OrigColor.Fill.UniformColor        'get thickness to increase by    Set OrigSelection = ActiveSelectionRange    OrigSelection.GetSize width1, height1    If width1 <= height1 Then minSize = width1    If width1 > height1 Then minSize = height1    Thickness = minSize * 0.035        OrigSelection.SetOutlineProperties Color:=CreateRGBColor(0, 0, 0)    OrigSelection.SetOutlineProperties Thickness, ScaleWithShape:=True        'weld    Dim s1 As Shape    Set s1 = OrigSelection(1).Outline.ConvertToObject    Dim s2 As Shape    Set s2 = s1.Weld(OrigSelection(1), True, True)            'auto reduce    's2.Curve.Nodes.All.AutoReduce 0.001    's2.Fill.ApplyUniformFill c1        'delete remnants    OrigSelection.Delete    s1.Delete    'OrigColor.Delete            EventsEnabled = TrueEnd Sub

View 5 Replies View Related

Illustrator :: Linked PSD Files Not Found When Opening AI Files Via Shared Folder

Mar 17, 2013

My main user folder on the iMac is set to be shared (read/write, including all enclosed files) with my MacBook Pro. The job is a series of one-page InDesign files (they are newspaper advertisements). The IDD files contain a series of Illustrator files with linked PSD files.The idea is that we can both work on the .idd and .ai files in the same folder at the same time.
 
It's all working fine EXCEPT that whenever an .ai file is opened on the MacBook, Illustrator doesn't know where the linked PSD files are. We can update the link, but when the .ai file is then opened on the iMac and saved, the same thing happens the next time it is opened on the Macbook.
 
I don't want to embed the PSD files into the .ai files as sometimes I have to modify them and they can be linked to up to 20 .ai files.
 
G5 iMac OSX 10.7.5 / Macbook Pro OSX 10.8.2 / networked via FireWire cable / file sharing on, laptop user has Administrator status, all files are read/write, permissions include all enclosed files / CS6

View 7 Replies View Related

Photoshop :: CS5 - Action Is Not Running Automatically While Trying To Save PDF To JPG?

Apr 3, 2013

My Problem in Photoshop CS5: Action is not running automatically while I trying to save PDF to JPG, in the batch process:

Followed following steps:

Opened PDF fileCreated new auction (F2)Flatten imageSave as JPGClose fileTo Run Batch:

Opened Batch dialogue boxSelected set/action nameSource: selected as “Folder”Directed location using “Choose” buttonAnd no selected any check boxes under the “Choose” buttonClicked “OK”  Now all the PDFs are opened one after another but not execute the selected action.

View 5 Replies View Related

Photoshop :: Running An Action On A Single Layer

Dec 2, 2008

I design wedding albums in a third party software which then exports each page spread as a layered PSD. I then like to go in and "polish" each page spread by adding vignettes or other enhancements to each image. Some very simple actions I have no problem with getting to work, however, I can't figure out how to make an action that will run on just the image I have selected and add a vignette to just that image regardless of the image size and shape. I have an action that will do this on a single non layered image but it won't work if the image is in a layered PSD because it tries to add a vignette to the entire document and of course runs into problems. Can anyone help me with creating an action that would add a vignette to a single image in a layered document?

View 1 Replies View Related

Photoshop :: When Running An Action / Not Saving The Correct File

Jun 29, 2013

When running a batch I have an existing file open and then an action which opens a pre exisiting file that i Drop images into  to give boarders and logos.
 
When I run the action it drops image into the PSD in the correct area and the file looks correct , then in turn it saves the Original file and not the one the batch ran on  even thou the file was worked on and edited on CS6. So in a sense it saves the Original File with the correct File naming when ran in the Batch Image processor.
 
Original file Name.
OUT_9035.NEF
Saved File name
OUT_9035-12x18-2013.PSD
 
Still with nothing done to the saved file execpt the name change.
 
Action
Open
C:*****12x18-W.psd
 Select Previous Document
 Duplicate Current  Layer

[code]....

View 5 Replies View Related

Illustrator :: Batch Action Delete Art From WMF Files

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

Lightroom :: Running A Droplet Causes Non-existent Destination Folder

Feb 13, 2014

I have an action that opens a raw file, corrects for wide angle, and saves with same name. However when I run the droplet (created from it) I get:
 
Unable to Export: The destination folder for this operation is missing.
 
/Users/juandent/Pictures/Lightroom Exports/corrected with droplet/Users/juandent/Pictures/Lightwoom Exports/

View 1 Replies View Related

Illustrator :: Hidden Files Placed In Swatches Folder?

Feb 13, 2013

I accidently saved files to the "swatches" folder in AI CS5. Now I can retrieve them OR see them when I look in finder. I've used the finder search and nothing. I'm running on a Mac.

View 4 Replies View Related

Illustrator :: Setting Up Action To Save Files In CS4 - File Saving Without Extension

Sep 4, 2012

I'm trying to set up an action to save a batch of files I creating using the variables tool (as detailed in this video: [URL]), I'll go into the Actions window, and record myself  saving the current file in .Ai format, and then stop recording. Seems pretty simple, but when I set that action to run a batch on my dataset it saves all the files without an extension. Am I missing another step where I set the file format that the action is supposed to save with? I'm confused. I've tried this using a few different file formats and they all come up the same.
 
this is what my Output looks like:

and my simple action:

View 2 Replies View Related

Photoshop :: Plugin / Action To Separate Multiple Objects On Single Layer Into Multiple Layers

Jun 24, 2013

Imagine a layer containing 10 squares, each square is isolated (none are touching). I need a quick way to put each of those squares on its own layer. Is there something already built in, or any plugin or action?

View 12 Replies View Related

Illustrator Scripting :: Why Won't Script Work On All Files In Folder

Jun 13, 2013

It is supposed to change hyphens to en-dashes in a ai files in a folder. However, when I run it, it only works on one file. After it makes the change and closes the first file, it stops.

var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pdfSaveOpts;
sourceFolder = Folder.selectDialog;
if ( sourceFolder != null )
{
    files = new Array();
    fileType = "*.ai";
    files = sourceFolder.getFiles( fileType );
    if ( files.length > 0 )
[code]....

View 6 Replies View Related

3ds Max :: Running Multiple Instances Of 2013?

Apr 24, 2012

BackBurner stopped working for me when 3DS Max 2012 came out so my work around was simply opening multiple instances meaning I'd have one "Max" rendering a scene while I worked in another "Max" while at night, having 2-3 simultaneous instances of 2012 rendering out animations. This really came in handy for doing multiple projects at the same time between render scene passes.

I can run 3 stable 3DS Max 2012 on the same machine without a problem, I can even run 1 x 3DS Max 2013 and 3 instances of 2012 at the same time BUT I'm unable to run more than one instance of 2013... it boots-up 2013 but then just hangs and doesn't do anything. I tried using BackBurner but it doesn't work so basically, it seems like I'm stuck running only one instance of 2013 at a time.

Is there a setting somewhere I can enable multiple instances again? I did take a look at Deadline but they don't support 2013 yet.

View 9 Replies View Related

Photoshop :: Running A Script On Multiple Images

Jun 23, 2006

is there a way to run a script on many images at once

View 2 Replies View Related

AutoCad :: Running Macro For Multiple Drawings?

Nov 4, 2011

I'm running ACAD Map 3D 2009. I have to run ONE custom macro on a number of drawings that are stored in a particular folder.

Basically all I need is to:

open
run custom macro
close
go on to next drawing.

I just don't know how to write LISP.

View 3 Replies View Related

Photoshop :: Aplying An Action To A Folder Of Images

Dec 14, 2006

I've created a simple action that just does auto levels and auto colour on an image, and it works fine. The problem is that it still takes me a while to go through every image and aply the action. Is their a way to set it to do the action to all the images in a certain folder, and then to save the result?

View 1 Replies View Related

AutoCAD Inventor :: Vault - Copying Files From Folder To Folder

Aug 29, 2012

I am trying to copy big assembly with its folders from one folder to another.I cant use Copy Design because I get too long path error.

Alternative way of copying files and keeping its relationships?

View 3 Replies View Related

Photoshop :: Batch Action In CS6 Ignoring Destination Folder?

Apr 13, 2013

I have an action I have been using once every year for several years in a batch automation process in Photoshop. Its purpose is to resize all the images in a specified folder and save the new versions (using the same filename) in another folder. Both folders are specified in the Batch dialogue, which is also set to override any Action 'Save As' commands. This procedure worked without any difficulties using CS4. Today, I tried running it for the first time under CS6 and it failed on the very first image.
 
The problem is that it is triggering a request for my permission to save the image as a copy. The reason is that it is trying to save the modified file in the source folder and ignoring my specified (different) destination folder.

View 4 Replies View Related

Photoshop :: Save As Folder Pathname In Action Not Stable

Nov 13, 2013

Basically, my action processes a picture in different ways and saves each version in different folders within a main folder on the desktop. The action works fine but as soon as I rename or delete the main folder, the change is reflected in the action which forces me to re-record the "save as" parts of it. I would like to use the same folder structure since I have duplicates of it. 
 
Is it something new in PS CC or specific to the Mac OS (Maverick)?

View 5 Replies View Related

Illustrator :: Opening Multiple Files At Once?

Oct 21, 2013

I have a user that is attempting to open multiple files at once in IllustratorCC. When you select multiple files and right click -> open, it only opens one file. If she double clicks a file while there is a file open in illustrator, nothing happens. The only way she has found to open multiple files is to go to file->open->browse to location for each file. This is quite time consuming. Is there anyway to enable being able to quickly open multiple files similiar to how older versions of Illustrator did?

View 14 Replies View Related

Illustrator :: How To Convert Multiple AI Files Into PNG

Nov 12, 2013

I have around 300 Illustrator ai files I need to convert into PNG. They need to
 
have transparent background (not white)be 500x500 pxbe centered in the image (all of them aren't squared: if it's rectangular, it needs to be centered) How do I achieve this?

View 3 Replies View Related

Lightroom :: Files In Folder That Are Not In Finder Folder

Jan 19, 2012

I opened my catalog today and went to one of my folders (2011/9 September). I noticed that there were pictures in the folder that did not belong and had the wrong name attached to them. I was surprized so I right clicked selected "Show in Finder" the folder 2011/9 September opened the photo was not in the folder.
 
Knowing the folder it should be in I went there and sure it enough it is there with it's original name.Went back to lightroom optimized the catalog... still there. Deleted folder in Lightroom, reimported, but the files came back.
 
The folder on the finder has 96 pictures, the folder in Lightroom shows 146.I can deal with removing the 40 odd files in this situation but I am afraid it will occur in one of the folders where there are a couple of thousand images.All my other folders seem fine for now, what would cause this issue?

View 4 Replies View Related

Illustrator :: Script To Modify Multiple Files?

Oct 24, 2013

This script is supposed to open, modify, save, and close all files within a chosen folder.
 
There are a couple problems with the script The files are "legacy" .eps and .ai, so a save dialog pops up. I want to save the file and move on, suppressing dialogs if possibleOnly the first file is opened If I comment out the line inside the for loop that runs the convertToUncoated() function, all of the files will open. If there is a way to upload the test files I'll gladly do that.

#target illustrator
/**
* Author: Jeff Hines

[Code]....

View 3 Replies View Related

Illustrator :: Print Multiple Different AI Files Onto One Page In CS6?

Jun 24, 2013

How can I print mulitple different .ai files onto one page in Illustrator CS6? I have all of the files organized by Arrange Documents>Tile All in Grid and I would like to print the files in this format so that they can all be seen at once when printed out onto one page.
 
Some background is that I have 16 different cad drawings that I have converted and edited in illustrator. I'd like to basically make a contact sheet with all 16 drawings so that they can be reviewed on one sheet of paper after printing. But each drawing is in it's own unique file, and I have not figured out how to put them all onto one page for printing.

View 3 Replies View Related







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