Running multiple actions in a batch process

On Adobe's site in the help section, on actions, it states:
To batch-process using multiple actions, create a new action, and record the Batch command for each action you want to use. This technique also lets you process multiple folders in a single batch. To batch-process multiple folders, create aliases within a folder to the other folders you want to process.
I have tried to follow these directions, but for some reason, I'm not able to record the batch command. When I create an action and start recording, the batch command is blanked out. I can insert using Insert Menu Item, but it still does not work.
What am I doing wrong?
thanks

You should ask in the Photoshop forum.

Similar Messages

  • Creating an Action and then Batch Process

    Need some help creating an action and then batch processing a file using that action. I was able to do it in previous versions of PS (wish I had kept the action!). For some reason its not working. Keeps creating the same file over and over again. Here goes:
    Action:
    Open up a PDF (separate PDFs of a PowerPoint Pres, may contain 80-100 pages); convert to grayscale; reduce to 43.2%; save as a TIF and close file.
    Batch:
    Use this action on all files.
    When I create the action it just recognizes the first file that I use as a sample and saves over the result over and over again.
    Thanks in advance.
    Tom

    You probably recorded a save as command in it and changed the name of the file. This change is also recorded and after playing the action it just overwrites the same filename over and over again.
    Always leave the filename untouched when recording actions.

  • Running Oracle Forms as a Batch Process

    HI All,
    I want to create a form and run that form a batch report...how can i do it???
    As in report we were doing it using the command rwrun

    Hi,
    Forms doesn't run as a batch job and always requires a user interface to be open up.
    Frank

  • Batch process makes image resolution change to 72dpi - it should be 300dpi - Help!

    In my work I use a batch process to run an action that converts EPS files to TIFF files. I have been using this successfully in Photoshop 7 on a Win2000 PC for a number of years. The process is as follows...
    Open EPS file
    Flatten Image
    Save
    Close
    When I recorded the action I made sure that the resolution was set to 300dpi as we require the TIFF produced at the end to be that resolution.
    I am now testing PSCS3 on a WinXP machine as we are upgrading all of our equipment. When I run the action as a batch process the TIFFs that are saved end up being 72dpi - They should be 300dpi. This worked in PS7 on the Win2000 machine and I am using exactly the same process in PSCS3 on the new WinXP machine, but something must be going wrong somewhere for the TIFFs to be saved at 72dpi instead of the required 300dpi. Any ideas?

    That doesn't seem to work - it doesn't appear to record any changes I make in the 'Image Size' dialog.
    When I look at the actions that I recorded in PS7 there are all the settings that I specified at the 'Open' step, such as 300dpi, greyscale, etc. saved under 'Open', but when I do the same in PSCS3 it doesn't record all the settings, just the actual 'Open' command, so I need to find a way of making PSCS3 remember '300dpi', 'greyscale', etc. within the 'Open' step like it did when I recorded the action using PS7.

  • Batch Processing Multiple Folders Question...

    Hi,
    I process multiple folders full of images using the "Include All SubFolders" option under File->Automate-Batch.
    It works flawlessly when all the folders I need to process are under the same folder. Example:
    /images/folder_a
    /images/folder_b
    /images/folder_c
    I am wondering if there is a way to nominate multiple folders that are NOT all in the same folder (so I can fire off a batch process over night).
    Example:
    /images/folder_a
    /temp/folder_b
    /photos/folder_c
    Is there any way to use my action as a Batch Process for these at the same time (without moving the images, or folders)?
    (PS CS3 10.0.1, OSX 10.5.5, JS for Scripts)
    Thanks,
    Matt

    What about folder actions: you should need a script that runs a PS action on all images in the current folder (and embedded subfolders) only. Then you should be able to use folder actions to launch the script, which runs the action.
    Not like I've done this, but...
    You might also look into automator. If you can build the action in PS (which it seems you can), either of these two features might help with the rest.
    J

  • How to apply multiple actions on a single file in one go to generate multiple watermarked pdfs?

    usually i need to create many watermarked datasheets for different customers using a single base pdf. currently i run individual actions for individual customers on the same file which means i have to runs 10s of individual actions every time i have  new source file. can i make a single action or a script which will take a single source file, run multiple actions(~15-20) for watermarks and save these files separately? basically what i need is instead of running many individual actions i run a single action/script to make it automatic. if yes, how to do so?

    Hi Monte,
    You can achieve this by assigning a secondary extension to another button, but this might not be what you want, so if you can elaborate a little further as to what you want exactly I can help you with putting together a solution
    Cheers,
    David Trad.
    **When you rate a persons post, you are indicating a thank you or that it helped, but at the same time you are also helping to maintain the community spirit - You don't have to rate posts and you wont be looked down upon :) **

  • How to use a custom script in a batch process?

    I was recently told that I can Photomerge, crop and save 2 separate folders of images to a 3rd folder in a batch process if I created a custom Javascript.  Are there any examples of how to integrate a custom script as an action in a batch process?

    if you recieve an image from mms you can save the object to gallery and then select it as wallpaper
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Batch Processing and Putting Two files together?

    Hello,
    I'm trying to find out if there is a way, in Photoshop, to automate placing a logo file and border from another file into a set of photos? Basically, I have a folder of, let's say, 4x6 images, and I have a file that has two layers, a thin transparent border layer, and a layer housing the logo. I would like to find out if it's possible to automate the process where I can batch a lot of files to put this file (or the two layers) onto the original image, then save and close and go on to the next file. Any ideas how to accomplish this? Thanks!
    Regards,
    Dave

    Here is a simple script I made a while back that allows you to place one of two different logo files on the image, depending whether the image is upright or horizontal in orientation.
    All you need is to put you two logo files in a folder and tell the script which folder they are in. After that, when you run the script, it will place the appropriate logo file onto you image depending on the orientation. I used "C:\\MyLogoA.tif" and "C:\\MyLogoB.tif" for this script.
    You can run this script from a batch process.
    var doc = app.activeDocument; // This defines the active document
    var width = doc.width.value; // This is the width of the original image
    var height = doc.height.value; // This is the height of the original image
    // Call the placeLogo function
    if(width>height){
    placeLogo("C:\\MyLogoA.tif");
    }else{
    placeLogo("C:\\MyLogoB.tif");
    // This is the placeLogo function
    function placeLogo(path)
    // =======================================================
    var id35 = charIDToTypeID( "Plc " );
    var desc8 = new ActionDescriptor();
    var id36 = charIDToTypeID( "null" );
    desc8.putPath( id36, new File( path ) );
    var id37 = charIDToTypeID( "FTcs" );
    var id38 = charIDToTypeID( "QCSt" );
    var id39 = charIDToTypeID( "Qcsa" );
    desc8.putEnumerated( id37, id38, id39 );
    var id40 = charIDToTypeID( "Ofst" );
    var desc9 = new ActionDescriptor();
    var id41 = charIDToTypeID( "Hrzn" );
    var id42 = charIDToTypeID( "#Pxl" );
    desc9.putUnitDouble( id41, id42, 0.000000 );
    var id43 = charIDToTypeID( "Vrtc" );
    var id44 = charIDToTypeID( "#Pxl" );
    desc9.putUnitDouble( id43, id44, 0.000000 );
    var id45 = charIDToTypeID( "Ofst" );
    desc8.putObject( id40, id45, desc9 );
    executeAction( id35, desc8, DialogModes.NO );
    // =======================================================

  • Photoshop 7 - batch processing is no longer doing save as

    I have had Photoshop 7 for many years.  I have been using several resizing and sharpening batch processes which have saved a resultant file at the end with a different name.  In the Batch process an original folder was selected and a destination folder and the file name changed with a different custom prefix.  I have been using these batch processes with no problems for years.  Without warning I have noticed that all of these batches are no longer working and the end result is one file in the destination folder, ie it must me overwriting.  I have tried to recreate the basic batch process again  and have resorted to using both 'save; and 'save as' at the end of the process in different test batch processes and the same result happens pretty much each time, the one file after the original folder had 5 images.  I have noticed that 'Save as' is not showing up in the actions of the batch process (only shows as 'Save' irrespective if you selected 'save' or 'save as'.  It is like Photoshop is refusing to accept 'save as' with a new file as a valid action.  I have also tried to check the override 'save as' box etc.  If you edit normally in Photoshop and 'save as' for that image, there are no problems
    Going nuts as I am a team photographer for a team playing in a national competition and therefore have a large volume of images to edit/resize
    cheers
    Hockeysnapper

    Windows XP previously, Windows 7 now (has been for about a year). 
    Computer is according to 'device and printers', ACPI x86-based PC, with Intel Core i5-3450 [email protected], and Xeon processor E3-1200 v2/3rd Gen Core - was all put together last year.
    Drives are nowhere near full.
    Only recent update has been Java on the weekend, coinciding with when I first noticed the issue.
    I have deleted Photoshop 7 off the computer using Windows 7's delete program function as there is no uninstall.exe file in the PS7 folder.  I deleted it out of Startup and off the Desktop.  I also deleted the remaining plugin folder containing Noise Ninja anti-noise software.
    I reinstalled the PS7 software again and in PS7 I expected the batch processes now to only contain the default batch processes, but all of my created ones are there in the list - this says they are not deleted in the uninstalll process.  Where are these stored on your computer so I can delete these perhaps?  However I am unconvinced that will actually achieve anything (see * below).    I deleted a few of these using the trashbin off the Actions palette.
    I created the numerous variations of the batch processes again, with 'save as overrides' box checked/unchecked and still no joy.  What I have noticed it does not matter whether you used 'save as' as one of your actions it has replaced it with 'save' every time (*).  How does/can that happen?  All the other 'save' actions for any of the other batch processes all show as 'save' now.    There is of course no option to change the 'save' in the actions to 'save as', eg right click mouse or something.
    I haven't found anything related in Google searches.

  • Batch processing audio for separate video clips?

    Hi there, new to the forums. I have roughly 100 separate video clips that either I have edited and exported out of PPro or collected from other outside sources. The video clips were recorded in a wide range of environments, producing widely varied audio levels and sound quality. The videos are for a blog.
    I am hoping to create a batch process preset in Premiere Pro or Audition to normalize the audio in all of the video clips. My goal is to have the audio play back at the same volume level in all of them without having to edit the audio individually in each clip. I have been searching the forums for a while for help with a batch process solution like this. Running CS6 so have full access to all Adobe apps.
    I have played around with running the clip audio through batch processing in Adobe Audition CS6. Haven't had any success thus far -- the audio doesn't save within the same video file it was pulled into Audition from. I really would like to normalize the audio without having to re-import/-re-export each separate video.
    PPro group might be the wrong place to start, but figured I would start here. Is there a missing manual out there for doing something that seems relatively simple?

    Premiere Pro can't do this.  If Audition can't either, then you're probably stuck doing it manually.  Or at least, using non-Adobe software.  Possibly VirtualDub, depending on your source media.

  • [AS][CS5] Multiple action folder scripts only 1 Indesign app

    Hi,
    With this post, I would like to ask a question.
    If you use multiple action folder scripts that processes multiple files using only 1 Indesign application, can problems occure when multiple files are submitted at the same time?
    How does applescript/indesign handles multiple use of the same application? Will an error be trown? Or do I have to build a check mechanisme to know if the app is "in use"?
    Has the Indesign application a property "busy" or "In use"?
    Kind regards
    John

    Hi Mark,
    Thanks for your feedback.
    If build a lock/unlock mechanisme in my folder action script to prevent simultaneous use of Indesign. In my script I write the current application state into a textfile.
    John

  • Running multiple batch actions on the same folder? One Click?

    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 and run an "Action" to create a rendered 2D design and save it in a different location to the source image and add an extension to the file name, leaving the source image unaltered. 
    The problem is that we then require to run this 20 times, each time, the difference is :- we want it to save to a different location and the "action" used is different because it changes the colour for example.
    The desired output is:
    FROM A JPEG ---> 20 folders (named as 20 different colours) and all our images rendered (as in our action) and saved into the 20 folders
    So we have 20 versions of each image
    Currently we simply set off the different actions in a batch separately, IE. 20 lots of batches to set off.
    So for example:
    * We have 200 jpeg images in folder [A]
    * We run a Batch function to run an "action" on all 200 images in folder [A] to render into our design and add a blue colour overlay (this is all done in the action itself) and to save them to folder [B] with the extension (BLUE) added to the filename.
    * Once Photoshop finishes running this Action on the 200 images (wish it would beep or something to let you know it was finished) we then run a batch to run a different "action" on the same 200 images in folder [A] to render the design and add a pink overlay and to save them in folder [C] with the extension (PINK) added to the filename
    And so on and so forth for the 20 different actions.
    Is there a way we can instruct Photoshop to run all of these 20 actions (one after the other in a queue as it where) without having to "Babysit" Photoshop and ask it to run each one off ourselves manually?
    Would we have to use JavaScript for this? We have no experience with JavaScript at all.
    We are currently using Photoshop CS4, is there a easier way to do this on CS5 or CS6?
    Kind Regards and Thanks in advance
    Steven

    Would we have to use JavaScript for this?
    I think it would be advisable but (if you don’t mind risking getting less help) you could use VB or AppleScript depending on your platform.

  • Running multiple batch actions on the same folder?

    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?
    Kind Regards
    Steven

    Do you use Photoshop in French?
    Because Pierre has mentioned that Actions are called »Script« in French, but I think you are referring to Actiond and what I think you need in this case is a proper Script (in JavaScript preferably).
    This Script could run Actions and hanlde the saving with additional name components to avoid overwriting etc.
    You could ask for help over at
    http://forums.adobe.com/community/photoshop/photoshop_scripting

  • Illustrator CS6 Running an Action on Multiple files in a folder

    I'm having trouble getting this to work and was hoping someone could shed some light for me.
    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.
    Please help!
    Thank you,

    I need to create a Action in Illustrator CS6 where i have to open set of files from the desired folder and convert the files to eps format. but i need to save as CS5 version instead of CS6.
    I tried creating the Action it works perfectly except the CS6 to CS5 conversion.
    Is there any way to achive converting to CS5 in Action?
    please help.

  • Using actions and batch processing to maximize compatibility on old psd files

    My apologies if this has been answered -- in my search I saw that it was asked multiple times, but not answered.
    My goal is to be able to import 5 years of PSD files into Lightroom that were originally saved with maximize compatibility turned off. These files are in shoot folders within year folders.
    I have been trying to do this with an action and batch processing through Bridge (Tools>PS>Batch). After switching preferences to MC=always, I have tried an action with a Save command, but that doesn't switch the file to max compat on. Save As does, but it also fixes the destination of the save in the action to a specific folder. I want to be able to overwrite the existing PSD file, leaving it where it is.
    Has anyone successfully tackled this issue? I know I can handle it folder by folder, with an action for each folder, but that just wouldn't be cool.
    Thank you

    L Show - Yes, I found a way and did just that.
    Everything as you wrote, using the save-as option. Yes, it will put the folder name into the action BUT it will override it when you run your batch from bridge IF you check in the box "override action save-as command" (and destination: save and close).
    Works like a charm (although slow - not utilizing the multiple cores :( )

Maybe you are looking for

  • My pc only recognizes my Sony Tv as Generic monitor...

    So, I got this desktop from a relative and everything worked at the time, sound and all. But it was still filled with stuff I didn't want to uninstall, So I decided to reset it using the System Rcovery tool ( through: At Boot>F11>System Recovery ...)

  • Image quality in iMovie

    Hi guys, I am trying to use iMovie to put together a slide show (I am a wildlife photographer) and it seems great for the job There are a couple of bugs within iMovie itself but mostly no big deal, except for one that is bugging me. The images I have

  • BEST PRACTICE TO PARTITION THE HARD DISK

    Can some Please guide me on THE BEST PRACTICE TO PARTITION THE[b] HARD DISK FOR 10G R2 on operating system HP-UX-11 Thanks, Amol Message was edited by: user620887

  • Container shapes (Urgent Help)

    At the following url http://www.myprinting.de/designer in the theme 3D area you will see 3D images combination i want to make similar to this but do not know how to make it. I have urgent need for this plz help me

  • ST06 no History Data SAP NetWeaver 7.1

    Hi- We are running PI on SAP NetWeaver 7.1 and when you go into ST06 there is no history data for CPU, etc.. etc.. I have activated the background job in RZ23n and the saposcol is running. Any suggestions..... Many Thanks. Tracy Deschamps