Batch work in CS3

I am very familiar with Photoshop but have never really done much with the Batch options or the Actions.
I have a folder full of RAW files from a couple different kinds of cameras. I want to automate opening them and saving them as tiff files without me having to do anything. As far as I can tell the Batch process can only automate conversion to PDFs. Is there a way to do automate the conversion where I could walk away from the computer while its working?
Thanks - Eric

I do this in CS4 but I believe you can also do this in CS3.  In the Menu Bar, go to FILE, then SCRIPTS, then IMAGE PROCESSOR. In that box you can Select the Folder to Process, Select the location to save and choose the file type and some more preferences. 
In my experience, if have done some editing of the RAW files in ACR, then usually the new files will appear as I have edited it.
Or you may also,  Go to Bridge, Select the folder and the images that you want, Press Command + R [for Macs], which brings you to RAW processing, make the edits you want to each image or edit an image, select all or some of the images and click on Synchronize, then click on the Save button.
I hope this helps.

Similar Messages

  • Add file name script not working in CS3

    I have this wonderful script (written by Brian Price) back in 2004 for PS7 that adds the file name to an image ( I use it for adding file names to small images to be used in a slideshow). It works great ion Photoshop CS, but when I try to use it as part of a batch action in CS3 it stalls on line 9. OIt works fine when run on just one image in CS3 . . . it just stalls when run as part of a batch action!
    Any help GREATLY appreciated!
    Many Thanks,
    Peter Thompson
    [email protected]
    www.photohawaii.com
    Here's the script:
    // this script is a variation of the script addTimeStamp.js that is installed with PS7
    //Copyright 2002-2003. Adobe Systems, Incorporated. All rights reserved.
    //All amendments Copyright Brian Price 2004 ([email protected])
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PERCENT;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = "";
    // Set font size in Points
    myTextRef.size = 30;
    //Set font - use GetFontName.js to get exact name
    myTextRef.font = "ComicSansMS";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 255;
    newColor.rgb.green = 255;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 5, 94);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    I have this wonderful script (written by Brian Price) back in 2004 for PS7 that adds the file name to an image ( I use it for adding file names to small images to be used in a slideshow). It works great ion Photoshop CS, but when I try to use it as part of a batch action in CS3 it stalls on line 9. OIt works fine when run on just one image in CS3 . . . it just stalls when run as part of a batch action!
    Any help GREATLY appreciated!
    Many Thanks,
    Peter Thompson
    [email protected]
    www.photohawaii.com
    Here's the script:
    // this script is a variation of the script addTimeStamp.js that is installed with PS7
    //Copyright 2002-2003. Adobe Systems, Incorporated. All rights reserved.
    //All amendments Copyright Brian Price 2004 ([email protected])
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PERCENT;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = "";
    // Set font size in Points
    myTextRef.size = 30;
    //Set font - use GetFontName.js to get exact name
    myTextRef.font = "ComicSansMS";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 255;
    newColor.rgb.green = 255;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 5, 94);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

  • CS5 to CS5.5 Upgrade. Will it work on CS3?

    CompUSA has a Product Upgrade from CS5 to CS5.5.
    Will it work on CS3?
    http://www.compusa.com/applications/SearchTools/item-details.asp?EdpNo=282844&CatId=5514
    Thanks so much!
    I don't want to purchase the upgrade, only to find out that it won't work.
    Jim

    No, it won’t work.
    Buy the CS3 to CS5.5 upgrade and you’ll save 10% and get a free upgrade to CS6 when it ships.
    Bob

  • [js] CS Scripting not working with CS3

    Hello,
    We had a JavaScript made for us that enabled the user to exchange certain text within a document.
    This script works fine with CS (Ver.3.0.1) but gives a JavaScript Error - #55, Error String: Object does not support the property or method 'findPreferences' with CS3 (Ver.5.0)
    I have tried 'tinkering' around with the scripting - but I have zero experience with JavaScript and have not found a solution.
    Additionally the people that wrote the initial script are not available.
    I have bought several books but they all seem like alien-language to me
    Below is the section of origional CS scripting.
    Can anyone point out to me WHY this script does not work with CS3?
    And WHERE I should start looking - changing?
    Thanks in advance for your help and guidence.
    Lee
    // Exchange the text
    function actProjectData(oneDoc, oneResult){
    app.findPreferences = null; app.changePreferences = null;
    oneDoc.search(undefined, true, true, oneResult[0],{appliedCharacterStyle:oneDoc.characterStyles.item(myProjectTitleCharStyleNa me)}, undefined);
    oneDoc.search(undefined, true, true, oneResult[1],{appliedCharacterStyle:oneDoc.characterStyles.item(myOfferNoCharStyleName)}, undefined);
    oneDoc.search(undefined, true, true, oneResult[2],{appliedCharacterStyle:oneDoc.characterStyles.item(myOfferDateCharStyleName) }, undefined);
    app.findPreferences = null; app.changePreferences = null;

    > Come to think of it, maybe it's easier to create a folder "Version 4.0 Scripts" under your scripts folder and place your CS script in there. Maybe that will do the trick. Should have thought of that earlier.
    Tried this, but it didn't seem to do anything... But certainly a 'try' worth.
    Currently playing around with the:
    > app.findTextPreferences.findWhat = "a";
    app.changeTextPreferences.changeTo = "b";
    oneDoc.changeText();
    I've got to the point where I have no error messages :-) Now I'm really flying.....
    Fact is - not all text and also the wrong text is replaced!!!
    I'm currently playing with the script to try and replace
    all texts with a given paragraph style with the entered text...
    Not proving to be simple for me, but I'm learning rather a lot!
    Now that doesn't sound very clear when I go back and read it!
    What I want to say is:
    Each page of the document has the project name, No & Date on it (each having their own paragraph style)
    so
    With this script it asks you the Project name, No. and Date and then goes
    through the whole document and replaces all instants of those texts with specific paragraph styles with the newly 'entered' text.
    Proving to be a little mountain for me - Thought it would only be a hill!

  • Does the Calendar extension pack 2.0.6 work in CS3 or CS4?

    I downloaded the Calendar extension pack 2.0.6 from the Dreamweaver exchange site and installed it in CS4 with no success. Can't find it anywhere and its supposed to be in Server behaviours > Dreamlettes > ASP Events Calendar
    Did the same in CS4 - same result.
    Does anyone know if it is compatible with either of these two products?
    If it is not, can anyone advise a suitable FREE simple events calendar for use in asp that will work in CS3 / CS4?
    Best wishes
    Howard Walker

    I downloaded the Calendar extension pack 2.0.6 from the Dreamweaver exchange site and installed it in CS4 with no success. Can't find it anywhere and its supposed to be in Server behaviours > Dreamlettes > ASP Events Calendar
    Did the same in CS4 - same result.
    Does anyone know if it is compatible with either of these two products?
    If it is not, can anyone advise a suitable FREE simple events calendar for use in asp that will work in CS3 / CS4?
    Best wishes
    Howard Walker

  • Working on CS3 files using CS4; resaving backwards to CS3.

    Currently I am working with CS3.  This file needs to be updated by a colleague using only CS4. Pls advise what is  the best methods/steps/ precautions she must take ensure that no links are lost etc;  and how she should resave backwards to CS 3. Thanks

    All that needs to happen is that she needs to export the file to InDesign interchage format (inx) so you can open it.  If she is editing any links at all she should also package it up afterwards and you should rename your links folder to force Indesign to use the new folder.
    Be aware that going from version to version like this can cause problems so back up your files.  Also text will likely reflow between the versions.  It's not recommended to do this all the time for these reasons.

  • Executing Batch work Item: Transaction brackets of the workflow has been da

    Hi,
    I am integrating workflow with the HR Processes and Forms using HCM.
    The process is new hiring and in configuration I have given the workflow name which is copy of the standard workflow(WS18900008). The event used is draft_created.
    When I execute the process and press the Save Draft, everything goes fine, the workflow gets completed but for the step Save Form Data(WS17900260) throws the following error:
    Executing Batch work Item: Transaction brackets of the workflow has been damaged.
    The task is TS17900108.
    Not able to understand what is this error and to which it is related.
    Pls help.

    Look for SAP Notes as this is SAP standard code.
    Short Text
    Transaction brackets of the workflow has been damaged
    Diagnosis
    When executing the workflow with the ID , the transaction brackets were destroyed by a commit command ('C') or a rollback work command ('R'). This command ('') was stopped from the implementation program of the object type. Access takes place, for example, when a condition is evaluated or when the container operation is executed. Access may only have a read character which is why a commit or rollback work command is not necessary.
    System Response
    The system has written a log entry. Uncontrolled commit or rollback work commands can affect the restart function of the workflow system. This restart function is only necessary in the case of errors. The current workflow instance is executed further.
    Procedure
    Check the implementation program of the object types and remove the corresponding ABAP instructions.

  • Coloring tools not working in CS3.  How do I fix them?

    My paint brushes, pencil and clone stamp have stopped working in CS3 for Windows 7.  How can I fix tem?

    There are a number of settings that affect the way the painting tools work.  Selections also affect them.
    Let's concentrate on the Brush Tool:
    Look at the options near the top of the Photoshop main window when you've selected e.g., the Brush Tool.  Set your Opacity and Flow to 100%.  Make sure you have no selection active, or that you're painting inside the selection if you do have one active.
    If all else fails, reset the Brush Tool by doing the following:
    -Noel

  • Opening CS4 fIles on a second monitor, the way it worked in CS3.

    This drove me nuts for well over a year. I guess this is a "tip" of sorts for dual monitor users who recently switched from CS3 to CS4 and expect files to open on the 2nd monitor.
    With the advent of CS4, the ability to automatically open a few dozen files across my 2nd monitor became impossible unless the Application Frame was set to cover the 2nd monitor with its opaque grey background. What I missed was the ability to have a totally unencumbered view of the 2nd monitor's desktop..the way it worked in CS3 and earlier….and most importantly: to have anything I opened, appear on the 2nd monitor.
    Without the Application Frame active and positioned to cover my 2nd monitor, loading files would always appear under the Palettes on my 1st (smaller) monitor. (It's the way I work. 30" 2nd monitor on my left and main 24" in front of the keyboard).
    A couple of days ago, I accidentally clicked the yellow "Hide" button in the corner of the Application Frame. As expected, it hid the Application Frame into the Dock and left the window free.
    Here's the unexpected thing: Loading a file (or multiple files) continue to tile diagonally down the 2nd monitor, the way they do when the Application Frame was visible.
    It's almost perfect…the tiling spacing is still larger than it was in CS3 and the tiling starts where the bottom of the Application Frame's menu bar was positioned before it was hidden. But it's as close to CS3 dual monitor behavior workaround as I've found.
    It'd sure be nice if Adobe implemented a "Hide Application Frame" View Menu item in CS5.

    The screen dimensions are "right," but I don't want it to use up any more space on-screen than is in the window.

  • Will CS4 components work alongside CS3 ?

    Presently I have "Design Premium CS3" with the following software components:
    - Acrobat 8 Professional
    - Device Central CS3
    - Dreamweaver CS3
    - Encore CS3
    - Extension Manager CS3
    - Extended Script Toolkit 2
    - Bridge CS3
    - Adobe Flash CS3 Professional
    - Adobe Flash CS3 Video Encoder
    - Adobe Illustrator CS3
    - Adobe InDesign CS3
    - Adobe Life Cycle Designer CS3
    - Adobe OnLocation CS3
    - Adobe Photoshop CS3
    - Adobe Premier Pro CS3
    I'm thinking of upgrading to "WEB Premium CS4" for now and later adding Adobe Premier Pro CS4.
    My question will CS4 work with CS3 version like Adobe Premier Pro CS3?
    Thank you in advance for your input.
    Cheers,
    Michael

    Quick Question...I just started using cs3....Would cs4 benefit me in any way..I only use it for website template design?

  • What version of lightroom works with CS3?

    What version of Lightroom works with Photoshop CS3?

    They are different programs, so I imagine they all work with CS3.  I don't use Lightroom, but I think Lightroom's ability to interface with Photoshop has evolved over the different versions, but I can't think how the Photoshop version would affect that, so the later the Lightroom version, the better. 
    BTW Lightroom 6 is rumoured to be coming very soon.

  • CS2 Plug-Ins Works in CS3 ?.

    Dear All,
    Here I have created the Small Plug-Ins in CS2, Is it Possible to work in CS3?...
    Could you please give me the Great Solutions...
    Yes! I have created the "Anchored Id" generation Plug-Ins... Its most useful for us....
    So Is it Possible to use the same plug-Ins in CS3? or We are able to create another one in CS3?.
    Thanks & Regards
    T.R.Harihara SudhaN

    Dear Patrick Perroud
    Many thanks for your kind Reply.
    HTH is mean = Head to Head...?. or Else.
    Yah! I saw the Porting Guide of CS3. They said, Some of Headings, Strings, Overlap Manager, ITextFrame Replaced, Scripting and etc....
    So, I can open my CS2 SDK code and change as per the CS3 code after that it will run... Is it Correct?...
    Please could your please give me the suggestion..
    Thanks & Regards
    T.R.Harihara SudhaN

  • Any way to make Motion Effect work in CS3?

    I had some problems with animated motion effects in CS2, but now they seem to be even worse in CS3... Along with all the other CS3 problems I've encountered, I'm considering going back to CS2 - but I thought I'd try here first...
    With an interlaced video project (NTSC SD) anything (title, photo, or video) that is put in motion using keyframes for the built-in Motion Effect comes out VERY bad.
    I tried a test with a clip that is only three frames long, consisting of white box approx. 100x100 pixels (made via Titler) and starting at frame 0, offset horizontally by 360 and at the 3rd frame (frame 2) offset horizontally by 380. (20 pixel shift)
    FIRST PROBLEM: Look at the frame 0 and frame 1 in the program monitor at 100%. Now try any other magnification - completely different results!!
    SECOND PROBLEM: To export these three frames, I have to set the work area bar to include FOUR frames, because if I animate motion of a clip and then export, the last frame is SOMETIMES not included in the output file. If you're playing along, output five frames just to be sure.
    THIRD PROBLEM: Open the clip in Photoshop. (The only application in CS3 that appears to work correctly.) At first glance, frame one appears to be interlaced because of the motion. But it's not. The second field is nowhere near where it should be in time relative to the movement. If you use an actual photo instead of a white box, you can see how badly it's mangled. (Not just fields in wrong position, but badly mangled.)
    FOURTH PROBLEM: Frame 1 and 2 (the 2nd and third frame) are also badly mangled.
    FIFTH PROBLEM: The fourth frame (frame 3) consists of the the final resting place of the object - BUT IT SHOULDN'T BE THERE AT ALL! (The 4th frame is blank.)
    I know, I know, long rant... I'm just getting so fed up with all of the problems with CS3...
    Anyway, are there other alternatives that will work on interlaced video??? (For now, I had to create a different project that was progressive, and render to a temp file to import into the interleaved project. It looks better, but not nearly as smooth of motion as it should be.)

    Please provide
    these details to help us help you.
    Cheers
    Eddie
    Forum FAQ
    Premiere Pro Wiki
    - Over 250 frequently answered questions
    - Over 100 free tutorials
    - Maintained by editors like
    you

  • Published SWFs not working from CS3 on Mac?

    This one REALLY has me stumped..
    I am working on a Mac Dual 2-Gig G5 running OS 10.4.10 and
    Flash CS3.
    I have a web site for a client posted (
    http://www.aronwiesenfeld.com
    ). This site has been running flawlessly for over a year published
    to Version 8 Flash Player AS v2.0. This client asked me to create a
    new temporary splash page last night that would announce his new
    Art Show and then click on into the main site. This site uses a
    Shared Lib, a SharedTrigger, a Core SWF (containing the main site
    navigation elements and handles loading of various movies into
    levels) and a Splash SWF (that contains the two splash screens and
    initial navigation to areas of the site. The problem I THINK I am
    having is in the Splash SWF... or is a problem with my LOCAL Mac
    installation? When I click one of the 5 Site Nav buttons it is
    supposed to tell the main core movie to advance to a new frame (20)
    and I target that movie by referring to _level0. This has worked
    fine for the past year (on this and other sites). I am attaching an
    example of the code used on each of the initial Nav buttons in the
    Splash swf .
    So here is the mystery...
    When I "Test Movie" inside Flash CS3, everything works/looks
    "perfect". If I then go to the desktop and find the generated HTML
    file and open it in Safari (both version 2 and 3-beta), or Firefox
    or Opera, etc., everything looks fine until I click one of the
    initial text Nav Buttions. At that point it takes me to the main
    site and loads the external SWF into a level as it should
    (indicating that the 3rd line of code on the button is execution
    and by the fact the the Splash movie disappears, it indicates that
    the core movie is indeed moving to frame 20 (_level0) as requested
    in the first line of code. However, all of the main site navigation
    buttons along the bottom of the main site as well as the background
    NEVER APPEAR? Also when I start to move the mouse around the loaded
    external movie the site completely crashes and I get a blank screen
    - IN ALL BROWSERS whether I am launching the site from my hard
    drive or the Internet!! But it works perfect INSIDE Flash CS3.
    Now comes the real kicker...
    Just for the heck of it after spending 3 hours trying to fix
    this on my main G5 tower(publishing to Player version 9, etc.), I
    decided to try accessing the site from my old G4 laptop. Ready for
    this? The site appears to be working perfectly IN ALL BROWSERS ON
    MY G4 also running 10.4.10!!!
    So my guess is maybe their is a problem with the Flash Player
    Plugin in all my browsers on my G5 or the Flash Plugin has a
    problem with OS 10.4.10 only on my G5. BUT, even if I launch this
    site directly in Flash Player from the desktop on my G5 it does not
    work - so the stand-alone player is having the same issue - yet it
    works fine on my G5 INSIDE of Flash CS3.
    I thought I had seen it all the last 5 years with Flash, but
    this one has be completely stumped!
    My client emailed me from California and said the site was
    working fine there of his PC. If that is true then I am having a
    LOCAL Flash Player problem on my G5 running 10.4.10.
    In addition to my question, if anyone can give me feedback as
    to whether or not this site is working on your machine/browser/OS,
    could you please let me know? You will know if the site is working
    if you click on Enter Site, then click on any of the 5 buttons
    (except Info) and you see a grey background behind the image and
    the lower navigation string appears.
    Thanks!

    Well after trying everything I could think of I started down
    the list again. I re-downloaded the Flash Player 9 r47 Mac
    installer and ran the installer again (which I also did last night
    with no success).
    This time after re-installing the plugin - ALL THE BROWSERS
    IMMEDIATELY STARTED WORKING ad the site now comes up fine - so,
    apparently I had a bad Flash Player install in my browser!

  • Palettes, toolbar, and control panel don't work in CS3?

    I can't select pages from the "Pages Palette" or add or delete pages from the same palette. All of the palettes are having similar issues (i.e. Pages, Info, Layers, Links, Stroke, Swatches, Object Styles, Color, Effects, Gradient, Character Character Styles, Paragraph, Paragraph Styles, etc.) They are just unusable.  Most of the toolbar work except for the selection tool which I can only activate by pressing (V). The control panel seems to be having the same issue. I've tried reinstalling and repairing the install on the entire CS3 package. I've tried reinstalling and repairing the install on just InDesign. Photoshop CS3, Acrobat, and Illustrator work fine....not sure about Dreamweaver, Flash, and the others.I've downloaded and installed all available updates for CS3 from Adobe's site.
    Any thoughts?
    Running on:
    Windows Vista Home Premium 32-bit
    Service Pack 2
    Processor: Intel(R) Core(TM)2 CPU T7200 @ 2.00Hz
    2.00 GB RAM

    See InDesign tools and panels don't respond to mouse clicks (Windows 7/Vista)

Maybe you are looking for

  • Can I keep my muffin to myself?

    I noticed that JWS puts all muffins in the same directory for all users of a Windows machine (at least that seems to be the case on Win2k). Doesn't this represent a problem on machines that are shared by multiple people? With the proliferation of Win

  • Help restore iphone photos (only) from last itunes backup.

    Hi Guys, had a look through the older threads but unable to find the right answer which applies in my case. 1) Over 2 months ago I have performed a full backup of my iphone 4s using iTunes 10 (photos included) 2) My phone now has 2000 photos on it, b

  • Photo backup questions and choice of media

    I recently bought an external 400GB harddrive connected to my Powerbook via Firewire intended for video-editing. But for now I've used it as a temporary organizing area for all my photos in iPhoto. I have several separate libraries (made possible wit

  • Tthe network needs a username and password for devices. College. Options!?

    I am a new college student and I want to print wirelessly.  The network needs a username and password.  The problem is when setting up a wireless network on the printer, it doesnt allow this. What are my options to print? Please help!? HP Officejet 6

  • Casting Arrays

    Is there anything particularly bad with casting Arrays? For convenience, I store some instances of a class in a LinkedList. Now, when I want to get them in a nice Array, I tried this: ("Creature" being a class of mine) Creature[] creatureArray = (Cre