Load files from bridge into photoshop lagers

I am trying without success to load (two) files from bridge to Photoshop as layers.

I am not exactly sure what you are asking, but I know you can create stacks in Bridge by simply selecting the desired files and pressing ctrl G on the PC (command G on MAC?) I believe there is a forum dedicated to Bridge scripting. You might have better luck there.

Similar Messages

  • Importing selected files from Bridge into Photoshop stack?

    Hi Guys,
    Is it possible to run the "Load files into Stack" script from Bridge having selected your files in Bridge itself. There are work arounds but if this script can be run in this way it would save me alot of time.
    Not sure if the script can be dropped into the a Bridge sub folder or whether or not Bridge can read jsx files? I do seem possible in the fact that some Photoshop scripts can be ran from Bridge but to my knowledge these are not jsx files.
    Basically I just need that to run exactly the same way but be launched from Bridge into Photoshop with those selected files
    Any help would be very appreciated.
    Many thanks.

    I am not exactly sure what you are asking, but I know you can create stacks in Bridge by simply selecting the desired files and pressing ctrl G on the PC (command G on MAC?) I believe there is a forum dedicated to Bridge scripting. You might have better luck there.

  • Opening photo from bridge into photoshop converts to smart object

    Instead of opening the psd-file normally from bridge into photoshop the file converts to smart object.
    I used to work with CS3 where double-clicking in Bridge on a psd-file would open it in Photoshop. Now, when I double click in Bridge (CS6) it opens a "quick time pro" file, which I definitely don't want. When I use the right mouse to "place in Photoshop" it does so, but then automatically converts the file into a smart object, which I don't want either. What need I do to open a psd-file in Bridge as normal psd-file in Photoshop?
    Thanks in advance for help.
    EVAMLG0507

    Hi C. Pfaffenbichler
    yes, there is a "Photoshop Document" in the list, but it has not
    association. when I click on the little arrow on that line it "searches"
    and shows all the files in the "program X86" on the C-drive. but I don't
    know what to associate it with, or said differently, I don't know what file
    in "programX86" to associate it with.
    EVAMLG0507
    2012/9/4 c.pfaffenbichler <[email protected]>
       Re: opening photo from bridge into photoshop converts to smart object created by
    c.pfaffenbichler <http://forums.adobe.com/people/c.pfaffenbichler> in *Photoshop
    General Discussion* - View the full discussion<http://forums.adobe.com/message/4671500#4671500

  • Can't Open ACR files from Bridge in Photoshop CC 2014

    I Can't Open ACR files from Bridge in Photoshop CC 2014.  I have uninstalled the programs, and all other versions of PS several times, but no matter what I do, I can't open a raw file I have opened in Bridge, in PS CC 2014. I have to click Open in Photoshop CC 2014 in Bridge.
    Also, on my workstation PC (Win 7 64bit), if I don't open PS prior to opening Bridge, then when I try to open a file from bridge it says it can't run PS on an earlier Operating system than Win 7!
    I have done exactly the same instalation on my notebook, same OS, and everything works perfectly - I just don't understand.

    Guys! This question was asked almost two months ago, and still no-one has replied? I'm still stuck, no matter what I have tried, I cannot find a solution. And please don't ask me to re-install AGAIN, I've done this several times and it simply does not work.

  • Taking the transparent png files from net into Photoshop. It coming as flat not transparent. How can i do ?

    Hi,
    i want to take some transparent png files from internet into photoshop. The files originally transpernt on internet.
    Im copying that image and paste into photoshop but it won't transparent. therefore im saving the files my mac and using like that.
    But i dont want do this. Because this isn't problem in illustrator. Can anybody help me how can i use transparent png files as transparent in photoshop without save file?
    hope could explain my problem.

    If you can right click on the image and copy its utl to the clipboard you may ne able to open that in Photoshop with this old  Photoshop script.
    // OpenImageFromWeb.jsx
    // Copyright 2006-2009
    // Written by Jeffrey Tranberry
    // Photoshop for Geeks Version 3.0
    // modified by MLH
    // modified by JJMACK 2010
    Description:
    This sample script shows how to download images from a web server using the
    Socket object.
    // Note: Socket.read() parameter & behavior
    // Socket.read() will read or time out. It may not read all data fromserver. <---------------
    // Socket.read(999999) will read 999999 bytes, or timeout, or socket will be
    // closed by the server.
    // enable double clicking from the
    // Macintosh Finder or the Windows Explorer
    #target photoshop
    // Make Photoshop the frontmost application
    app.bringToFront();
    // SETUP
    var html = "";
    var request = "";
    var url = "";
    var binary = "";
    var requesthtml = "";
    var socket = new Socket;
    var domain = "www.mouseprints.net" // the domain for the file we want
    var sImg = "/old/dpr/JJMack8btiSrgb.png"; // the rest of the url for the file we want
    var port = ":80"; // the port for the file we want
    // MAIN
    var url = prompt("Enter the image's full URL http://domain/full image path",url);   // prompt for domain name
    if (url != null && url != ""){
      if ( (url.indexOf("http://") != -1)  || (url.indexOf("HTTP://") != -1)  ) {
      domainPathLength = url.length - "http://".length;
      domainPath = url.substr(7, domainPathLength);
      pathOffset = domainPath.indexOf("/");
      domain = domainPath.substr(0, pathOffset);
      sImg = domainPath.substr(pathOffset, domainPath.length - pathOffset );
      // Isolate Image name
      var Name =  sImg
      var imagePath = "";
      while (Name.indexOf("/") != -1 ) { // Strip Path
      imagePath= imagePath + Name.substr(0, Name.indexOf("/") + 1);
      Name = Name.substr(Name.indexOf("/") + 1 ,);
      //alert("domain = " +  domain + " , Image = " + sImg + " Image File Name = " + Name);
      if ( domain != "" && sImg != "" && sImg != "/" && Name.indexOf(".") != -1 ) {
      var f = File("~/" + Name); // Image file name
      f.encoding = "binary"; // set binary mode
      f.open("w");
      if (socket.open(domain + port, "binary")){
      //alert("GET " + sImg +" HTTP/1.0\n\n");
      requesthtml ="\n\nDmain:" + domain + " Port" + port + " binary\n"
      //request ="GET " + sImg +" HTTP/1.0\n\n"
      request ="GET " + sImg +" HTTP/1.0\nHost: " + domain + "\nAccept: image/gif, image/x-xbitmap, image/png, image/jpeg, */*\n\n";
      socket.write(request); // get the file
      var binary = socket.read(99999999);
      binary = removeHeaders(binary);
      f.write(binary);
      socket.close();
      else { alert("Connection to Domain:" + domain + " Port" + port + " Failed   ");}
      f.close();
      if (binary.length != 0) {
      //alert ("file length = " + binary.length );
      if(app.documents.length == 0) {
      //app.documents.add([width] [, height] [, resolution] [, name] [, mode] [, initialFill] [,pixelAspectRatio] [, bitsPerChannel] [,colorProfileName])
      app.documents.add(new UnitValue(1600,'px'), new UnitValue(1200,'px'), 72, null, NewDocumentMode.RGB, DocumentFill.WHITE, 1,BitsPerChannelType.EIGHT, "sRGB IEC61966-2.1" );
      placeSmartObject( f );
      f.remove(); // Remove temporary downloaded files
      else { alert("Invalid Image URL: " + url ); }
      else { alert("Invalid URL: " + url ); }
    else { if ( url == "" ) alert("No URL Entered"); }
    // FUNCTIONS
    function placeSmartObject(fileRef){
      //create a new smart object  layer using a file
      try {
      var desc = new ActionDescriptor();
      desc.putPath( charIDToTypeID( "null" ), new File( fileRef ) );
      desc.putEnumerated( charIDToTypeID( "FTcs" ), charIDToTypeID( "QCSt" ),charIDToTypeID( "Qcsa" ));
      desc.putUnitDouble( charIDToTypeID( "Wdth" ),charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Hght" ), charIDToTypeID( "#Prc" ), 100 );
      desc.putUnitDouble( charIDToTypeID( "Angl" ), charIDToTypeID( "#Ang" ), 0 );
      desc.putBoolean( charIDToTypeID( "Lnkd" ), true );
      executeAction( charIDToTypeID( "Plc " ), desc, DialogModes.NO );
      activeDocument.activeLayer.resize(100 ,100,AnchorPosition.MIDDLECENTER);
      activeDocument.revealAll();
      } catch (e) { alert("Placeing file: '" + fileRef + "' failed"); }
    // Remove header lines from HTTP response
    function removeHeaders(binary){
      var bContinue = true ; // flag for finding end of header
      var line = "";
      var httpheader = "";
      var nFirst = 0;
      var count = 0;
      while (bContinue) {
      line = getLine(binary) ; // each header line
      httpheader = httpheader + line;
      bContinue = line.length >= 2 ; // blank header == end of header
      nFirst = line.length + 1 ;
      binary = binary.substr(nFirst) ;
      if (httpheader.indexOf("Bad Request") != -1 || httpheader.indexOf("Not Found") != -1) {
      alert (requesthtml + request + httpheader);
      var binary = "";
      //alert (requesthtml + request + httpheader + "\nFile length = " + binary.length);
      return binary;
    // Get a response line from the HTML
    function getLine(html){
      var line = "" ;
      for (var i = 0; html.charCodeAt(i) != 10; i++){ // finding line end
      line += html[i] ;
      return line ;

  • Importing files from Bridge into a stack in Photoshop

    Hi guys,
    Photoshop has a great function of loading files into a single stack, so as not to have many 10's of files to open. Bridge on the other hand allows for better viewing and navigation through folders etc. Just wondering if it was possible to select all the files you wanted open to a stack from bridge but these then to open in photoshop in a single psd file. It is possible to open all the files from Bridge then run the load in stack from the open files but then you have to close each file manually.
    Any help would be much appreciated. Many thanks in advance.

    Sorry for any confusion. If you imagine using Bridge simply to select the images you want and highlighting them, nothing more, more nothing less. (because of better thumnail previews). These are now the images I want to perform the Photoshop "load files into Stack" script on. The only way this is possible is to the above mentioned, open hte files run the script and then close the files manually but as I have other files open can be very annoying going through them all. The other way is to write down the files names on a piece of paper and then find these files again through Photoshop/open, but as you can understand this is far too time consuming if you have 15-20 files to open at a time. This is basically because although you can choose the files in Bridge you cannot copy that selection to Photoshop. If this were possible it would also sort out the issue as I would have the correct files selected to run the script directky in Photoshop.
    Hope this is a bit clearer.

  • Why can't I open raw files from 5diii into photoshop CS4?

    My second shooter has the 5Diii, and I am having trouble opening her raw files into my bridge and photoshop (CS4). I am using a 5Dii. The files are named differently and I can't preview any of her files in Bridge and Photoshop will not load them. ?

    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    The 5D Mark III was first supported by Adobe Camera Raw 6.7 (for CS5) and 7.1 (for CS6). ACR 6.7 is not compatible with CS4. CS4 is simply too old.
    The 5D Mark II has been supported since ACR 5.2 which is compatible with CS4.
    Your choices for the 5D Mark III:
    Join the full Cloud
    Join the Creative Cloud Photography Program (PS CC 2014 + LR)
    Upgrade to CS6
    Free option: Convert all 5D Mark III Raw files to DNGs using the free Adobe DNG converter then edit the DNGs in CS4
    Photoshop Help | Digital Negative (DNG)

  • Loading Batch from Bridge-Tools-Photoshop-Batch no screen appears

    Can't get Batch screen to load in cs6 from Bridge-Tools-Photoshop-Batch

    Hello! are you on a PC, a MAC? can we have more info about your machine.
    Is anything non-standard on your setup, for instance: Are you using restricted profiles on a PC?
    The window does not show, there is no error message? is Ps running? does it work from Photoshop? what kind of files are selected?
    If you give all the relevant info directly you'll get your answers faster.

  • Open PSD files from Bridge to Photoshop CS6

    In previous version I can open psd files to Photoshop with double clicks. Now it open to QuickTime only. How can I go back to the the old way? And I don't want to "place" the file to smart objerct either.
    Please help.

    Hi,
    In Bridge cs6 look under the Bridge preferences (Ctrl+K or Cmd+K) and then under File Type Associations, where you can choose the applications to open files from bridge.

  • Why wont my psd files open from Bridge into Photoshop

    When I try to double click on a psd file is Bridge, it opens in some other image viewer... not Photoshop.  Under File>Open With, there are a number of
    possibilities, but none of them are PS.  There's Fire Fox, and Microsoft Mail and Painter X but not Photoshop.  I can open Raw files but not Psd's or
    jepgs... What could possibly be wrong.  I cannot find a preferance I've marked incorrectly. 

    First, I have never made any changes to this area in Preferences.  When I saw the suggestion to check file associations in Bridge Pref., I looked  through the file asssociations and mostly I found listed  'none beside most types,' but beside Psd, Tiff, and Jpegs it said, "Explorer Settings."  Why in the heck would that be there?  I clicked on that and noticed I could direct a search through my computer for something else, so I when straight for Adobe and on to Photoshop Cs5, and clicked OK.  After that, I could open the psd's  in Photoshop and under File>Open With, PScs5 was listed now as the defautl... YEA!... But when I tried the same with jpegs, it didn't work.  I put in PHcs5, but they are opening in Camera Raw.  Now while I could want that option, I don't want that as a default.  I'm totally perplexed as to how this could be happening. I've been using Bridge since it was first introduced into PS, and I've never had a problem like this.   I hope someone who is more educated in this area will please shed some light on this for me. 
    I'm in an advanced Digital Imaging class, and I asked my all knowing teacher and she was confused as well.
    Thanks.  7SUS

  • Can't Open jpeg files from Bridge CS3 to PhotoShop CS3

    This is really weird. I had a trial version of CS3 and bridge worked fine. That ran out, so I tried CS2 to see if I could get by with the older version. CS2's bridge worked just fine.
    Then I installed a full version copy of CS3 and removed CS2 (to free up space) and for some bizarre reason, I cannot open any files from bridge into Photoshop. It's the CS3 bridge because I clicked on the Help, About Bridge and it showed CS3.
    When I just click "open" under file, it tries to open with Illustrator. When I click, "open with" I get this list: Adobe Illustrator CS3 (default), Firefox 2.0, Internet Explorer 6.00, and Paint 5.1.
    I can't figure out a way to change the default to CS3, and it worked fine with the trials.
    Please advise.

    It was a nice thought. I just did it, and associated all .jpg type files with photoshop, but no such luck in solving issue. I did figure out a way around it that kinda works, but not nearly as convenient. I drag select a group, then hold-click on the group and toggle into Photoshop, then let go. It pastes the group there. However, if I control click to select a group (or deselect within a group), I can't hold-click. So I have to do smaller groups at a time if I want to bypass certain pictures that get grabbed in a bigger group--does that make any sense at all?

  • Why does psd-file from Bridge start as smart object in Photoshop?

    Anybody has a solution?
    Instead of opening the psd-file normally from bridge into photoshop the file converts to smart object.
    I used to work with CS3 where double-clicking in Bridge on a psd-file would open it in Photoshop. Now, when I double click in Bridge (CS6) it opens a "quick time pro" file, which I definitely don't want. When I use the right mouse to "place in Photoshop" it does so, but then automatically converts the file into a smart object, which I don't want either. What need I do to open a psd-file in Bridge as normal psd-file in Photoshop (and to eliminate the silly "quick time pro standard" when double-clicking in Bridge?
    Thanks in advance for help.
    EVAMLG0507
    I have already posted the question in Photoshop. No solution yet.

    Hi Curt Y
    sorry, it was getting somewhat late last night (I live in Switzerland) and after having spent already quite some hours on this problems I wanted to dedicate the evening to more pleasant things.
    when I go - in Photoshop - to > edit > preferences  I only get the following window. there's nowhere "file type associations" (only in Bridge preferences), and I can't navigate anywhere to > Program Files > Adobe > Adobe PS 64bit > Photoshop exe. Do you have an idea why this could be? Thanks in advance for your support.

  • Why do i keep getting "image is missing preview data" when trying to move files from bridge to PS ??

    I am not able to move multiple files to PS...regardless whether I am doing HDR or panorama.....get this "image is missing preview data" with the first file number of the series of files.
    #missingpreviewdata

    You don't "move" anything from Bridge "into" Photoshop.  You use Bridge to call on Photoshop to come and open the file(s), and Bridge simply hands the files over to Photoshop.
    The problem lies in how the files are being processed and saved.
    No one can help you until you provide complete and sensible details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Open one than more file from Lightroom to photoshop at the same time

    Hi,
    i'm a PS Elements-User and i have a question. Is it possible to open more than 1 file from lightroom into photoshop with one click? Thank you in advance for helping me.
    SH

    I use PSE9 and send several derivate files (TIFFs) from LR to PSE9 all the time to do panos.
    I've recorded a little screen capture showing 4 images being sent to PSE9 from LR3.6. You can see the 4 tiffs being added to the catalog before calling PSE9 and then the 4 TIFFs arrive in PSE9.
    What Operating System do you use? Can you show a screenshot of the external editor settings for PSE?
    Beat

  • Cannot place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

    I can no longer place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

    I can no longer place files from Bridge CC into Indesign CC 2014. No option for anything except Photoshop.

Maybe you are looking for

  • File getting auto erased

    I have a shared file on my windows server that capture the responses from network. But unfortunately that file is getting refreshed after some interval. Sometime it shows 44 Kb size later become 4 and the previous data is totally erased. Please help

  • Save contant of dropdownlist in 2d array

    HI Community, Is it possible to save the contant of an dropdown in 2d array? greets Chris

  • Output of One Query  is input to other Query??

    Hi All, How to make output of one query as input to other Query and what are the points to be takeb care of to do it? regards, murali. Message was edited by: Murali

  • Enabled/Disabled color row Datagrid

    Hi all, I extend class Datagrid to draw rows depending a value. package comp      import flash.display.Sprite;      import mx.controls.DataGrid;      import mx.core.Application;      public class DataGridEx extends DataGrid           public var rowCo

  • MacBook Pro 1.1 Replacing the optical drive with HD Caddy?

    Hi all, I have had my macBook pro 1.1 A1150 for a while now and way back I did the firmware update for the Superdrive UJ 857 and since then it won't read or write DVD's CD's occasionally it will but in  nutshell it doesn't work. Now I decided to upgr