CS5 Batch dose not work right.

I am running window 7, 64 bit CS5. I have a folder that containg 100 High Res Images. I want to create a Batch file, so i can shrink them for email.
This is what I did:
I created a new folder i called it small version
Then i created an Action called it Action 2
I recorded the Action as follow: I Down sample one image and I did save for web and I stoped the Action
Later I open the File- Automate- Batch I set the Action2,
Inside Source: I choosed the Original High REs Folder
Inside Destination I choosed the Small Version Folder.
When I click Ok, The Batch process starts, and when it finish Batching, Inside my Desk top I see the Batch images all over., and also I see all the images in my Destination folder as well.
I noticed the pictures that are created inside the Desktop are a correct size, But the pictures
that are created inside the Destination folder are big.
Why they are pictures are creating inside my Desk top, as well, since i choosed the Destination Folder.
And why the Desktop pictures are correct size rather than my Destination Folder.
Thank you very much
Simon                                                    

Dear MTSTUNER.
Thank you very much. If i set the destination folder in the batch dialog to none. Then all the pictures will be inside my original picture, and i don't want that happen. I want the final Batch pictures to be in a separate folder.
I did try a different technique, instead of save for web, I recorded an Action, to shrink the Res from 240 to 72 and it came up ok.
I shoot with my Canon 5D, and it shoots for example: 3700 x 4600 240 dpi. So Therefore, I create an Action to Shrink it to 1400 px Height with Resample image, and Scale and constrain proportion all Checked out. Then when the Batch is over it saves all the file at 1400 px Height. The problem is they all going to be at 240dpi. That is why I use save for web, because it automatically saves it at 72 dpi. otherwise, I have to create a crop tool, and in the crop preset i have to apply 1400px for the Height, and 72 for the Resolution, and do each one Manually.

Similar Messages

  • PS/Bridge CS5 Batch Processor Not Working / Missing Scripts

    I'm having a bit of a problem within Photoshop/Bridge CS5 and haven't found anything that works to resolve it.
    In Bridge, I want to launch the Photoshop Batch Processor via Tools>Photoshop>Batch.
    When I select this, Photoshop launches, but the dialog to process the images never shows. On occasion, if I return to Bridge and attempt the same operation again, I'll get a notification that there's already something in progress and asks if I want to queue this operation. The other times (majority) I can return to Bridge and attempt the operation again but get no dialogues in Photoshop. I can try the other options in this menu as well (eg Image Processor, etc) and get the same results.
    Here's what I've done so far:
    1. Checked Bridge Edit>Preferences>Startup Scripts and ensured those were all checked. I even disabled all, closed Bridge and Photoshop, then re-enabled.
    2. Cleared all Preferences from Bridge and Photoshop (using Ctrl+Shift+Alt at launch).
    3. Reinstalled Photoshop (multiple times)
    4. Uninstalled Photoshop, ran the Adobe CS Cleaner application, then reinstalled Photoshop.
    It should be noted that in Bridge>Edit>Preferences and Startup Scripts, if I click the button to 'Reveal my scripts' the folder it takes me to is blank. Not sure if this folder is solely used for personal/user created scripts or for others as well, but it's completely empty.
    I have also gone to Help>Updates and updated both applications with any necessary updates from Adobe.
    If I go into Photoshop and select File>Automate>Batch or even File>Scripts>Image Processor, both dialogues open fine.
    Running Windows 8.1 Pro.
    Anyone else seen this and actually resolve the issue? Does anyone know where the scripts are supposed to be located and/or if I can get them from somewhere else? Any help is much appreciated

    Make sure Photoshop is not started and then try to use Bridge menu Tools>Photoshop>Batch does Photoshop start up?
    Bridge CS5 menu Tools>Photoshop>Batch works on my Windows 7 Pro system
    Photoshop Automate>Batch is not a script  and Photoshop does not any external java program it had its own version of java plugin.
    c:\Program Files (x86)\Adobe\Adobe Photoshop CS5\Plug-ins\Extensions\ScriptingSupport.8li
    c:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Plug-ins\Extensions\ScriptingSupport.8li
    However there are two startup scripts for the bridge involved Bridge and Photoshop  You must have them for you have a Bridge menu Tools>Photoshop>items
    two scripts on my system are:
    c:\Program Files (x86)\Common Files\Adobe\Startup Scripts CS5\Adobe Bridge\bridge-4.jsx
    c:\Program Files (x86)\Common Files\Adobe\Startup Scripts CS5\Adobe Photoshop\photoshop.jsx
    The photoshop.jsx seems to be the one the the inserts the menu Tools>Photoshop>Batch into Bridge and also invokes Photosgop Automate>batch  photoshop.jsx  also inserts the other Bridge menu Tools>Photoshop>Menu Itens that you state work.
    Here is what I see in my photoshop.jsx for batch.  I do not know or understand Bridge scripting and do not know javsscript but what I see there seems to be some checking done about Photoshop being available and if it is not the script just returns which is what you seem to be experiencing the test looks like this
      if (!photoshop.correctPSIsAvailable (availabilityCheckOptions))
      return;
    The whole batch support section follows:
    //=================================================================
    // Batch
    // Sets up Photoshop's Batch automation command to be
    // accessed from the Bridge.
    //=================================================================
    // This routine takes an array of files. If called by Photoshop,
    // it will invoke Batch with the files. If called by
    // any other app, it will send a BridgeTalk message to Photoshop
    // to invoke this routine with the same arguments.
    photoshop.batch = function (/* Array */ files, availabilityCheckOptions)
      try
      if (availabilityCheckOptions == null)
      availabilityCheckOptions = new AvailabilityCheckOptions ();
      // Make sure this can be run.
      if (!photoshop.correctPSIsAvailable (availabilityCheckOptions))
      return;
      if (BridgeTalk.appName != "photoshop")
      // Bring Photoshop to the foreground.
      BridgeTalk.bringToFront (photoshop.versionInfo.btTargetName);
      // Create a new BridgeTalk message for Photoshop to invoke
      // Batch with the selected files
      var btMessage = new BridgeTalk;
      btMessage.target = photoshop.versionInfo.btTargetName;
      btMessage.body = "photoshop.batch (" + files.toSource () + ");";
      btMessage.send ();
      else
      app.bringToFront();
      photoshop.runActionCommand ('batch', files,
      localize ("$$$/PSBI/Automate/BatchSettingsFile=Batch via Bridge Settings"));
      catch (error)
      if (error.number != 8007) // Don't report user cancelled errors.
      alert (error);
    // This routine is called when the Bridge's Batch menu item is
    // chosen.
    photoshop.batchFromBridge = function ()
      try
      var availabilityCheckOptions = new AvailabilityCheckOptions ();
      // Make sure this can be run.
      if (!photoshop.correctPSIsAvailable (availabilityCheckOptions))
      return;
      var files = photoshop.getBridgeFileListForAutomateCommand (true, false);
      if (files.length != 0)
      photoshop.batch (files, availabilityCheckOptions);
      catch (error)
      if (error.number != 8007) // Don't report user cancelled errors.
      alert (error);
    // The code below inserts the Batch menu item into the Bridge menus.
    if ((BridgeTalk.appName == "bridge") && (BridgeTalk.appVersion.indexOf (photoshop.versionInfo.bridgeTargetVersion) == 0))
      // Use temp function to keep vars out of global namespace.
      photoshop.tempFunction = function ()
      // Set up the info necessary for inserting this item into the Bridge's menus later.
      var menuItemInfo = new Object;
      menuItemInfo.text = localize ("$$$/PSBI/Menu/Automate/Batch=Batch...");
      menuItemInfo.name = 'Batch';
      menuItemInfo.onSelect = photoshop.batchFromBridge;
      photoshop.menuItemInfoArray.push (menuItemInfo);
      photoshop.tempFunction ();
      delete photoshop.tempFunction;

  • Hi My Iphone time dose not work right. Allways i should fix it manually. SOS plz help

    hi All.
    Unfurtunately my phone fell down ( not hardly) bu after that I could not rotat my screen and also my iphone rime dosent work correct.
    Please advise me.
    Regards

    You will have to take the phone to a service provider such as an Apple Store, the carrier who sold it to you, etc., for appraisal on how much it will cost you for replacement.

  • My javac dose not work

    my javac dose not work
    how do i fix it?
    'javac' is not recognized as an internal or external command,
    operable program or batch file

    Original reply #4:
    arian wrote:
    click the my computer icon with the right button of mouse, select properties, under advanced tab click Environment Variables, in the system variables section edit Path parameter, add to it the folder where the jdk is installed. after you click apply, open the cmd from scratch and try it. if you've added it correctly, the command will be recognized.
    ArianArian, please stop advertising your homepage here.

  • After firmware update to V2.0.03, the web UI dos not look right. (WRT160 V2)

    Hi
    After firmware update from V2.0.01 to V2.0.03, the web UI dos not look right. 
    I can't see menus, just version number and the basic setup page.
    Router Linksys WRT160 v2.
    Allan

    Hi
    Thanks for the reply.  
    I't works ok now.  
    Thanks again.
    Allan

  • Why youtube dose not work on my macbook pro 10.6.6?

    why youtube dose not work on my macbook pro 10.6.6 ?

    Double check you have the latest version of Adobe Flash.

  • Remote not working right

    I've had my FIOS about 2 months, put new batteries in remote and it is still not working right.  Some things work fine.  Other things stopped working - can't delete a DVR show, can't change channels with one digit, but it will if I add all 4 digits, info box on bottom of screen never disappears (unless I hit exit).  What's wrong?
    My second TV set-up is OK.
    Solved!
    Go to Solution.

    netmouse wrote:
    I've had my FIOS about 2 months, put new batteries in remote and it is still not working right.  Some things work fine.  Other things stopped working - can't delete a DVR show, can't change channels with one digit, but it will if I add all 4 digits, info box on bottom of screen never disappears (unless I hit exit).  What's wrong?
    My second TV set-up is OK.
    Might not even be a remote issue. Have you tried rebooting the box?
    If you do think it's the remote it's still under warranty.
    You can get a free replacement easy within the dvr's menu.
    Here is a page that tells you ways to get a replacement.
    http://www.verizon.com/support/residential/tv/fios​tv/remote+controls/troubleshooting/questionsone/12​...
    Get a new remote and if you still have the same issues then you'll know its the dvr that needs to be replaced.

  • Is there any way to redownload iOS 5 my iPod touch 4 th generation white 32 gig is not working right?

    My iPod is not working right. It's slow and lags and just doesn't work and always exits apps. I was if there was any way to redownload ios5 because it does the same things after I've reset about 4 times. Please help! It's even lagging why I am typing this. The thing that I checked below are all of the things that are not working on my iPod.

    You cannot reinstall iOS without doing a restore. But you might first try a software update. If you have iOS 5.0 or 5.0.1, you can update to iOS 5.1 by going to Settings > General > Software Update.

  • TS1398 Hello, my iPod touch is not working right. It says its connected but if I select App Store, safari and other apps that require wifi pops out a note saying either"error loading" or "cannot connect to iTunes Store" and would exit the app automaticall

    Hello, my iPod touch is not working right. It says its connected but if I select App Store, safari and other apps that require wifi pops out a note saying either"error loading" or "cannot connect to iTunes Store" and would exit the app automatically. Please help.
    Thank You.

    See:
    Can't connect to the iTunes Store

  • IPad 2 was updated to latest iOS 7 and has been not working right since. I have tried to do a restore but still continues to go into reboot mode by itself and very erratic. Can no longer trust it. I tried to complain to Apple but have to give them 20 buck

    iPad has not worked right since it updated to latest software. Tried to question Apple about it but it costs 20 bucks just to lodge a complaint. Is this normal Apple behavior or am I missing something. Also anyone else having issues with upgrade to iOS7. It was working great until that point and now goes into reboot mode often and sometimes will continuously reboot several times. I have tried to restore but that didn't clear the problem. Any thoughts or help would be appreciated.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Hi i have a ipod touch 4 generation 64gb and my camera is blocked and dose not work i cant update the ipod either

    hi i have a ipod touch 4 generation 64gb and my camera is blocked and dose not work i cant update the ipod either

    Try:
    - Reset the iOS device. Nothing will be lost       
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar

  • Bridge CC Tools - Photoshop - Batch does not work in Photoshop CC 2014.

    in Bridge CC Tools - Photoshop - Batch does not work in Photoshop CC 2014. At first I didn't even see the option but I reinstalled Photoshop CC and now I see the menu option but when I try it there is a message that I need to use Photoshop CC. So I open Photoshop CC and the same thing happens? I can't seem to make it work.

    Kitty,
    Your screen shot is in the virus scanning queue, where it can linger for minutes, hours, days or weeks.
    If you use the camera icon in the reply editor's formatting bar, you can embed your image in your post, where it will be viewable instantly.
    then:
    As for your issue, make sure all applicable scripts are checked in Bridge preferences:

  • HT4623 My iPad mini is not working right ?? On some apps

    My iPad mini is not working right on some apps

    You can always try to reset your device and see if it helps matters any:
    Device Reset (won't affect settings/data/music/apps/etc)
    1. Press and hold (& continue to hold) BOTH the Sleep/Wake button & the Home button.
    2. Continue to hold BOTH (ignoring any other messages that may show) until you see the Apple logo on the screen.
    3. Release BOTH buttons when you see the Apple logo and allow the device to boot normally.

  • Since updating to 706 the sound on my ipad2 is not working right. On videos or music. There is constant distortion and what sounds like interference. Any ideas?

    Since updating to 706 the sound on my ipad2 is not working right--on videos or music. There is distortion and some kind of interference at all times. Any ideas?

    Has the unit EVER been jailbroke?
    If "No," first try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore, go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, if you have IOS-7, read this.

  • T42 keyboard not working right, HELP PLEASE

    My keyboard is not working right. If I push the key it wont work,but if I hold the key for a couple seconds then it works was told to replace the keyboard and I did with a new one. But it is still doing it. Can anyone tell me what the problem is. Model # R4U machine type 2378, OS XP-PRO , COA SP2 , S/N L3xxxxx.
    Message Edited by scottzilla on 12-15-2008 10:05 PM
     Moderator Note; s/n edited for members own protection
    Message Edited by andyP on 12-16-2008 07:57 AM

    It's the Quick Selection Tool in Photoshop Elements 9 and I'm trying to get the background and make it another layer so I can even out the color of the background then bring down the transparency.  Not sure if that makes sense.  I'm new to this....  Sometimes the area it will grab can go ...not fast.. but not slow.  Sometimes it's like it's just messed up and literally takes 30 seconds to process each move.  I rebooted my computer and re opened it and it helped a little.  It's not clear what causes it when it messes up and when it doesn't.  Just frustrating.  It's probably user error because I'm so new at Photoshop.   Thanks for your input.   I really appreciate it.

Maybe you are looking for

  • How do I add a "members only" function to my site?

    Want to add a members only site to my web site, how would i configure this in dreamweaver? I'm thinking I would create what was to be inside inside then somehow configure the link on the main web page to login somehow? Any help / pointers are appreci

  • Having trouble using applescript to save pdf as excel spreadsheet

    I have been trying to use applescript to create an automator action to convert some downloaded PDF's to .xlsx format.  After reviewing a good bit of the SDK documentation, I came up with the following scripting: tell application "Adobe Acrobat Pro"  

  • Logging entries appearing twice

    Hi, I've a problem with log4j and Apache Commons Logging that I'm hoping someone can assist with. Logging appears twice in my application logs. I've a single log4j and a single commons-logging jar on my classpath. My log4j.properties simply contains

  • How to allow only the specified users/groups to open my pdf files...

    Hi there, I'm looking for resources/documents describing how to allow only the specified users/groups to open my pdf files by the Java API... I've found a sample code creating a policy in the following document. http://livedocs.adobe.com/livecycle/es

  • Powershell and Jquery

    Hi, I have to create a report for the size's mailbox per user and i succeed to simple result in html. Now, I want to import jquery and add some classes. This is a test i show you.. Now this my script, I'm trying to import bootstrap and i'm thinking t