Photoshop Action from Bridge

I have a bunch of PNG files that keep on showing up with no preview. Can't figure out why. But, I have figured out that if I open them in Photoshop and re-save them it fixes the preview.
So, I did an action in Photoshop where I saved the file under the same name, telling it NOT to append w/ copy. Then told it to close the file.
Well, the first 4 or 5 times I ran the action it worked EXCEPT it still appended w/ copy. I just deleted the original files because that was better than the alternatives of doing it one at a time or having no preview.
Well, now it won't work. I think it has to do with some type of file save over-ride in Bridge? The first time I ran it I noticed a greyed out file location folder that was from weeks ago. But, it was putting the files in the same place so I disregarded. Then I did something (don't know what) and that folder is gone. BTW, another gripe, how come most of the time it will only let me put folders on the desktop and nowhere else really?
Now the action won't work at all. I think because of the "save as" settings in Bridge. None of them will work. and I can't figure it out from Photoshop either. What magic setting did I mess up?
Thanks,
Holly

Don't know much about behavior of PNG files.  I did see in one post that .PNG files require both preview and thumbnail extractions as they can't be generated "on the fly".  Not sure exactly what this means, but probably has something to do with your problem.
If you have a greyed out folder where the PNG files are I would purge the cache here (tools/cache/ purge cache for xxx folder) and see if it clears it up.

Similar Messages

  • Running photoshop script or action from Bridge

    My general question is: is there a way to select a number of files in Bridge, then run a script on all of them? I'm interested in this regardless of whether it really answers my more specific question.
    My more specific need is: I want to be able to convert raw files to jpeg, using automatic camera raw settings, by selecting the files in Bridge and running a single script.
    Thanks,
    Mike

    I have a slight change to this question.
    I make changes to photos in Camera RAW (exposure, white bal, etc.)and save the changes.
    I have an action that I run from Bridge by selecting individual photos, running an action from Bridge using Batch. The action opens each .CR2 selected photo, resizes it, and saves as a jpg in another folder.
    For some reason, the saved photos are not reflecting the changes I made in Camera Raw.
    I constructed the action by recording the opening from Bridge into Camera Raw, and then clicking Open Image.
    The action applies all the custom settings I used in the initial image when recording the action to each photo.
    Any suggestions on how to solve the problem.
    Thanks for any help.
    Steve

  • How do you run a PSD Action from Bridge?

    I have a droplet on my desktop. I was thinking of copying the file to the droplet. I have to inspect the name of each file before the action gets run. If it meets certain critirea. Then I need to run the action on that pic. Or thumbnail. Thanks in advanced for any words of wisdom. Is there a guide for Bridge JS?

    Here is another go at this. It is working however, my target of photoshop 13 quits working when I put it inside this loop. The result is it wants to open up CS5 PHOTOSHOP.
    I am not sure about that yet. here it is.
    #target bridge
    app.document.deselectAll();
    var thumbs = app.document.getSelection("*");
    for(var a in thumbs){
    var f =thumbs[a].name.slice(0,10);
    var poo=f.indexOf ("BW");
    if(f.indexOf ("BW")!=-1){
        var poop=app.document.select(app.document.thumbnail.children[a]) ;
        var thumb = app.document.selections[0];
        thumb.open();
        runAction();
    function runAction(){
        var bt = new BridgeTalk;
    bt.target = "photoshop","13";
    var crud="try{doAction('2012 Design BW','Design' );}catch(e){}";
    bt.body =crud;
    bt.send();}
    I am running this from the STK. I am not sure if it would help it to run from Bridge I might try that next.
    If you have any ideas I would love to hear them.

  • When I use the command "Place in photoshop" CC from Bridge CC, it skips the Camera Raw Dialog box

    I am having an issue when I use the "Place in Photoshop" command from within Bridge CC, it is skipping the Camera Raw Dialog box and not behaving like a normal smart object. This has been my workflow for years and suddenly it's not working in CC. Anyone have any advice? Thanks!

    As far as i can tell, if you use Place>In Photoshop from Bridge with a camera raw file and don't have any other documents open, it skips the camera raw dialog, but does place (open as a smart object)
    and then you can double click on the smart object icon on the thumbnail in the l;ayers panel to open camera raw.
    If you already have a document open then Place>In Photoshop using a camera raw file opens the camera raw dialog before placing the photo.
    Also check the photoshop>Preferences>General and verify you have Place or Drag Raster Images as Smart Objects checked.
    The above behaviour seems to be the same in photoshop cc as past versions of photoshop, at least on the windows versions.

  • Run Photoshop script from Bridge

    Hi
    I have a modified version of Image Processor script in photoshop scripting folder (it saves RAW files as smart objects) and would like to run it from Bridge (apply to selected images). Right now I can run script from File > Scripts Photoshop menu but not in Bride Tools > Photoshop
    Thank you
    The help will be appreciated

    Its Not Adobe Code and its not shipped with Photoshop.  Photoshop versions also has bugs in ScriptUI which is used by scripts with a dialog.  Image Processor Pro 2.3.1 has some bugs. Some files formats its saves may have problems.
    Russell Brown works for Adobe but he has been pulled away from Photoshop.  Xbytor is the programmer that wrote Image Processor Pro he does not work for Adobe and he is feed up with Adobe for not fixing bugs in Photoshop scripting.  He stated he will support Image Processor Pro for some time.
    Russell web site has this. The Open Source code is now available for many of my script and panels
    Because of new projects and a changing demand for my time, it will be necessary for me to move on to new projects at Adobe. For this reason I will no longer be able to support, or update many of my scripts and panels. Never fear! – I am releasing the source code for many of my programs and if you are a programmer then you can use this code to modify and change my scripts to meet your needs. If you are not a programmer then I recommend working with anyone on the list of programmers that I have supplied below. However! Let me make it clear that his code is not to be sold. This is an open and free source to be used for the good of humankind and Adobe Photoshop users around the world
    ===========================
    I do not have a Mac or a Windows 8 machine to test on. On my Windows 7 PC Image Processor Pro 2.3.1 and newer versions run on CS6, CC and CC 2014..  X is still working on it

  • Call Photoshop Action from other APP?

    Hi Everyone,
    Anybody has any experience to run any Photoshop action using a binary .EXE file?
    For example, I want to let Photoshop execute a filter action from my own application?
    I know that DROPLET can do this, what I did is that I use System("Droplet.exe somefile") to launch the Photoshop action. However, I got enough trouble doing this with the UAC of Windows7, there're intermittently "Droplet couldn't communicate with Photoshop" error showing up, and UAC always prompt you the warning message. I tried lots of ways "Run as Administrators" etc, but the error shows again even though the previous time it worked!
    Finally, I think it's time to give up droplet and thinking of other way of doing this.
    I just simply want a ".exe" or something that can let my application tell Photoshop to run a simple action (with no parameters). I'm not sure whether PostMessage/SendMessage can do this or not on Windows. If anybody has any idea, please let me know.
    Thanks in advance!
    By the way, I also learned that Photoshop API is not thread safe, so that an "inception thread" of a plugin in the Photoshop causes unpridictable crashes, and you cannot do that in a separate thread.

    Check out the vbs samples (Visual Basic) from here: http://www.adobe.com/devnet/photoshop/scripting.html
    Then use "cscript" from the command line.
    http://technet.microsoft.com/en-us/library/ff920171.aspx

  • MISALIGNMENT PROBLEMS USING "LOAD FILES INTO PHOTOSHOP LAYERS" FROM BRIDGE CC

    I'm having a persistent problem which technical support was unable to resolve after being on the phone with them for 1.5 hrs. I was told the issue would be escalated... That was five days ago, and I've heard nothing.
    Here is the problem: In ACR working on a bracketed group of five images shot from a solid tripod in Bridge CC. I carefully synchronize all parameters incl. crop, transform, exposure, etc. Then I go to Tools / Photoshop / Load files into Photoshop layers, and the images open in photoshop in a layered file..., BUT some are knocked out of alignment. Actually they have been cropped slightly smaller than the original file, always by the same number of pixels. Sometimes all layers are affected, sometimes not.
    Photoshop CC & Bridge CC are both up to date, as is the camera raw plugin. I’m on a new iMac i7 4-core, OSX 10.9.4. All software was newly downloaded from Adobe two weeks ago. I have reset preferences, reset tools in Photoshop, even uninstalled and reinstalled Bridge CC 6.1.0.115 all to no avail. Any suggestions? I am desperate for some help.

    I run Windows 7 Ultimate, I have 2.00GB of RAM with 1.74 usable, and I selected 40 images, each about 2MB.

  • Photoshop missing from bridge tools menu

    I have upgraded from CS2 to CS3 and now cannot access Photoshop automate features via bridge as the Photoshop menu item is missing from the Bridge tools menu. I am running XP professional all programmes are up to date

    All items are checked in Startup Scripts dialog, but when I click on Reveal My Startup Scripts, the folder is blank.
    In /Library/Application Support/Adobe, there is no Startup Scripts CS5 folder.
    I have now uninstalled CS5, used the cleaner and reinstalled it from different download files seven times, so I doubt that's the problem.
    Don't know what to do next.

  • Adding Photoshop Actions from Complete Digital Photogprahy

    I downloaded the Photoshop CS2 Action Set from Complete Digital Photography and the new actions do not show up in Automator. The installer adds the actions to the user library folder, and I believe an attempt at importing them through the Automator import menu has added them to the root library folder. The process should add Photoshop CS2 as a valid application but it does not show up in the list. I erroneously tried to add a folder in Automator named PS CS2, and I dragged a .action file from my library into that folder. Now all the .action files in both my user and root library files have a folder icon instead of the familiar Automator Action icon.
    I think the actions imported when I ran the installer. Any idea why I wouldn't be able to see them? Also, how do I get the .action files to show the proper Automator action icon?
    Thanks...

    The only idea that comes to mind is that you don't have Photoshop CS2 installed. You need the application installed for the actions to work since the actions use the application. So, without the application, the actions will not show up.
    I mentioned that because you didn't explicitly state you had the app, but also because that's typically the reason.
    As for undoing what you did to change the icon, I'd suggest undoing what you did, i.e. reversing what you did. So, remove that folder that you made wherever it was, and anything else you did. You should also consider logging out and back in after that, or restarting, whichever is easier.
    Installing actions with Automator shouldn't move them to the root folder. Also, any actions I've installed work just fine from my own Library folder in my account.
    Another thing to consider is actions can be made specifically to the version of the associated application. So, the actions might not be allowed to work with other versions of the app, depending on how the developer of the actions made them. It doesn't have to be that way, but it could be that way. Something to consider if you do indeed have Photoshop CS2.

  • Bridge & Photoshop CS5, opening Photoshop files from Bridge

    If I open Bridge in Photoshop CS5, & double click on a jpeg thumbnail in Bridge, it will not automatically open the file in Photoshop. Why?
    How can I change my settings so that the files selected in Bridge will automatically open in Photoshop when double clicked?

    Hi, when you go to Bridge/Preferences/file Type Associations, & you see the box with a list of file formats in bold on the left, you will see a program name or the word 'None' next to each one, & an arrow to click on, to the right of each one.
    If you have 'None' written there, it means it hasn't got a program allocated to it, or it may have some other program written there instead.
    What you need is to see Adobe Photoshop CS5 in the list on the right, next to every file format that you use.
    You could try clicking on the Reset to Default button at the bottom of the box to see if it brings up Adobe Photoshop CS5 automatically.
    If it doesn't, or brings up other programs instead, click on each of the arrows on the right inside the box, then hit 'Browse'', then look on your hard disk for the program file for CS5, & select the actual application set up file 'Set-up.exe''.
    That's what worked for me.
    Good luck!

  • Running Batch Actions in Bridge causes PS's Preferences window to open repeatedly

    I just upgraded to CC at work, and ever since I've had a problem when I batch run Photoshop Actions from Bridge.
    I have some simple Actions set up in PS to do some conversions for large batches of images (convert to RGB, resize, change DPI, etc.). But when I run them from Bridge like I always have, it causes Photoshop to open the Preferences window to the "Units & Rulers" tab. And that, unfortunately, pauses the batch conversion until I close the Preferences window. This happens at least once per file, but usually twice. Pretty annoying.
    I never had this problem when I was using CS6, but just in case there was some sort of incompatibility with my old Actions, I remade one of them in CC, but the Preferences window still pops up.
    This only happens when I run Batch Actions from Bridge. When I run the Action on a single file from PS, it works fine.
    Any ideas? Maybe I've found a new bug?
    Thanks!

    BTW, I was able to get around this problem by opening all the files I wanted to run the Action on using Bridge, then manually triggering the Batch dialog via Photoshop and using the 'Source: Opened Files' option:
    Using this system, I didn't get any errors. Luckily, I also didn't have a huge number of files. If I did, I'd probably have to copy them all into a temp folder using Bridge, then run using 'Source: Folder'. Definitely a pain when they are all right there in Bridge ready to be batched.

  • Bridge and Photoshop Actions

    I have a number of Photoshop actions that run scripts. These scripts have been brought forward from CS and work fine when run inside Photoshop CS2. They are of varying complexity, but I've tested the following with a simple script: alert ("Hello World");
    When I run the actions from Bridge, via the Batch command, the file opens correctly in Photoshop and I then get an error "the command scripts is not currently available".
    Why is this? Do I need to alter my scripts to run in Photoshop CS2?
    Note that when I save the action as a droplet, I can drag files onto the droplet and the script is triggered correctly.
    John

    [email protected] wrote:
    > Shay, that's exactly how the error arises - as a Photoshop batch there's no problem. Do try saving the action as a droplet and dropping files onto it from Bridge - it's not a perfect solution but can be a helpful workaround.
    I just answered this on the PS forum and thought I'd pass this along. If I'm
    wrong, I'm sure Bob will correct my analysis...
    When you make a call via BridgeTalk from one application to another it uses the
    scripting engine to do the communication. So when you make a call from Bridge to
    PS to execute an action in PS, the script engine in PS gets fired up and
    app.doAction is called to run the Action. One "feature" of PS actions and
    scripting is that you can't have a script call an action which then calls a
    script, which is is exactly what you are attempting to do here. You're only
    workarounds at the moment are to:
    1) have everything done in the action (may not be possible)
    2) have everything done in a script (may be tedious)
    3) have a toplevel script in PS called by Bridge which does what it can and then
    invokes actions to do what most of the work, with the restriction that the
    action can't turnaround and call a script.
    This is not a simple bug for adobe to fix as it gets to the heart of the
    Action/Scripting framework.
    ciao,
    -X

  • How to launch photoshop action?

    I'm writing a Bridge CS3 script to generate a web gallery. The user selects some files and starts the script through a context menu item. The script iterates through the selection list a couple of times, writes files, etc.
    As the final step, I need to start Photoshop CS3 and run an action on the set of selected files--as if I had picked Tools/Photoshop/Batch... from the Bridge menus but with the action specified so the user does not have to go through the action dialog in Photoshop. After starting the action, the Bridge script is complete and can quit while Photoshop does its batch processing.
    The Photoshop action contains mostly "fit image..." and sharpening steps. It also contains some simple scripts, mostly simple "save as" types of operations.
    I'm uncertain how to do this. Is this where BridgeTalk must be used? Can anyone direct me to a sample script that does something simple like this?
    Is there any problem with having scripts within the action? Some messages I've seen suggest there is, but I'm not certain I'm interpreting them correctly, or whether they apply to CS3.
    Thanks.
    Guy

    [email protected] wrote:
    > I'm uncertain how to do this. Is this where BridgeTalk must be used?
    Yes. You would have some Bridge JS call some PS JS which would, in turn, call
    your Batch/Action.
    > Can anyone direct me to a sample script that does something simple like this?
    You might want to take a look at the Bridge SDK, if you haven't already. There
    are several examples using BridgeTalk. And also look at the code in Common
    Files/Adobe/Startup Scripts CS3 to see how Adobe implemented the Bridge
    Tools->Photoshop functionality. It's a bit difficult to follow in places but
    what you really want to look at is the photoshop10.runActionCommand function in
    photoshop-10.jsx. It's one way of calling PS actions from Bridge and it's also
    what I use in my code.
    >
    > Is there any problem with having scripts within the action?
    CS3 has apparently addressed this issue but I can't say from personal experience
    that it works. However, this was not possible at all in CS2 unless you went to
    really extreme measures.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • How can I open psd files into Potoshop CC from bridge

    PSD files will not open into Photoshop CC from Bridge CC. I get this error message...“Windows cannot find, C:\program files\adobe\adobe photoshop CS5 (64 Bit)\photoshop.exe.” I can open jpeg, tiff and raw.   I'm using Windows 7. I do not have CS5 on my computer. Help...

    You must have uninstalled CS5 after you installed CC.  Your registry is fouled up.  You can either uninstall CC, run the Script Cleaner and reinstall, or fix registry as below.
    After looking at a new user's registry HKEY_CURRENT_USER and comparing it to the one on the original user, I found a registry value which was not changed, and should have been.
    I found a key:
    HKEY_CURRENT_USER\Software\Classes\Applications\Photoshop.exe\shell\op en\command
    This key was set to the path for Photoshop CS6 when it should have been set to Photoshop CC.
    In other words, in my case, it was set to:
    "C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe" "%1"
    When I changed the CS6 to a CC, in other words, so the whole key reads:
    "C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Photoshop.exe" "%1"

  • Images won't open in PS from Bridge and Camera Raw.

    I am suddenly unable to open images in Photoshop CS5 from Bridge or Camera Raw - what have I done wrong - how can I rectify it.

    Mullit wrote:
    I am also have a lot of start up problems with the computer itself and have lost a lot of my desk top, my internet search engine and various other things. Luckily all my documents and pictures are still intact though.
    This sounds serious.  I would make sure you have a backup on a seperate hd or disk or you photos and other documents.  If the drive fails you may loose everything on the hard drive.
    Check your free space and fragmentation on hd.  You should have about 20% free space.  So if you have a 400 gig drive you should have 80 gig free.

Maybe you are looking for

  • Error in Portal with xpd Administrator role

    HI, We have a EP Portal 7.0 SP16 and xRPM and Federated Portal. When try to enter to the tab "xpd Administrator"  or to the tab "Portofolio Management" with any user,  send the next error: Exception ID:10:25_30/09/08_0001_3751350 [EXCEPTION] com.sapp

  • Storing information that the user shouldn't be able to access?

    Hello all, I'm not sure if this is the appropriate place to post this but feel free to move this post to a better spot if its in the wrong place. Hope you guys can help me I have a program that requires the user to register such as entering a cd-key

  • Plugged in not charging battery wont power laptop

    hi my laptop is showing plugged in not charging the battery is at 46% constantly but if you unplug the power source the laptop instantly powers off and will not start up on battery power normaly if the battery is dead the power button will flash when

  • How to install post script fonts in lion?

    how do I install post script fonts in lion?

  • Volume limit and contact

    Hi does anybody have a problem with Volume limit in iphone i set the limit and lock it but still nothing happens? ne suggestions Also does anybody know how to create contact groups in Iphone 3g