Change preferences for double click on images in Bridge

Hiya,
I feel a bit silly for asking this because it seems so obvious, but the onvious way just doesn't seem to work for me.
When double-clicking on an image in Bridge, it opens Photoshop - which I suppose in some cases helps, but drives me crazy because it slows the system down so much. I want it to open Camera Raw 6 or just have a bigger preview of the photo.
I tried Edit/Preferences: Under General I ticked the option that double clicks edits camera raw settings
and under file associations I tried to associate jpg files with something other than photoshop but Camera Raw 6.0 is not offered to me there and I can't find the path that leads to it. What is the path? Or is there a different way?
Thanks so much!!
(Oh and another question, when when you filter for two keywords, you get all files that have either one or the other, how can I make them only show the ones that have both???)

  Don't think you could get a jpeg to open in camera raw with a double click as that is not the normal route, like it is with a raw image.  If you right click on the image you have the option to open in camera raw.
If you do a search with 2 keywords it you only want images that have both you have to click if all criteria met in the match drop down box.

Similar Messages

  • Double clicking an image in Browser view

    I see that the behavior for double clicking an image in Browser view has changed between Aperture 2 & 3. In version 2, double clicking an image would jump from Browser view to zoom in on that image in full screen mode. Now in version 3, double clicking just switches to that image in Viewer mode in the main window, without entering into full screen mode.
    While I guess this change makes some sense given the changes to full screen mode in v.3, my old fingers have gotten used to doing things the old way. To recreate what I used to do in v.2 I need to double click, then hit 'F' to do to full screen mode and then do the reverse to get back where I started.
    Is there anyway I can change this behavior to the old v.2 way? I see lots of ways to customize hotkeys and commands, but nothing to change behaviors for a double click.
    Thanks!

    I can't find anything, but I'm still finding my way around!
    I don't think you need to double click and press F..... just pressing F should change views.
    Another way is to drag the "Full Screen" icon into the toolbar, and you can just click that.

  • How do I adjust double click speed in Mountain Lion. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    Double clicking is no longer opening my folders.
    How can I adjust the double click speed in Mountain Lion to reduce the double clicking speed. The mouse system preferences does not seem to have a speed slider for double clicking. Only the tracking speed slider is visible.

    For 10.8.3,  it's in System Preferences > Accessiblity > highlight Mouse & trackpad on the left.  The Double click speed slider shows on the right.  Moving it to the left gives you more time between clicks.  Moving it right gives you less time.

  • When I try to open an image by double clicking on it in Bridge, I get a message telling me to log in to Creative Cloud.  I am running CS6, and the default should be to open files in Photoshop 6 or in Adobe Raw (if it's a Raw file).  I don't want to log in

    When I try to open an image by double clicking on it in Bridge, I get a message telling me to log in to Creative Cloud.  I am running CS6, and the default should be to open files in Photoshop 6 or in Adobe Raw (if it's a Raw file).  I don't want to log into CC since I am not a subscriber, and this means that I have to work around, and go  back to Bridge, and tell it to open the file in Adobe RAW.  However, this does not work for older psd files which for some reason cannot be opened in RAW.  How do I return to the process of simply allowing RAW files to open automatically in Adobe RAW, and simply right clicking on the image in Bridge to bring up the option of opening it in Photoshop?

    <moved from Adobe Creative Cloud to Bridge General Discussion>

  • Code for double clicking rows  in alvgrido/p and moving it to internal tabl

    hi,
    code for double clicking rows  in alvgrido/p and moving it to internal table

    hi,
          see the following code which uses layout , double_click event in ALVGRID.
    TABLES: mara,marc.
    DATA:obj_custom TYPE REF TO cl_gui_custom_container,
         obj_alv TYPE REF TO cl_gui_alv_grid.
    DATA: it_mara TYPE TABLE OF mara,
          wa_mara TYPE mara,
          wa_layout TYPE lvc_s_layo,
           wa_variant TYPE disvariant,
            x_save.
    DATA:it_marc TYPE TABLE OF marc,
          wa_marc TYPE marc.
    SELECT-OPTIONS: s_matnr FOR mara-matnr DEFAULT 1 TO 500.
    START-OF-SELECTION.
      SELECT * FROM mara INTO TABLE it_mara
        WHERE matnr IN s_matnr.
      CALL SCREEN '100'.
          CLASS cl_dbclick DEFINITION
    CLASS cl_dbclick DEFINITION.
      PUBLIC SECTION.
        METHODS dbl FOR EVENT double_click OF cl_gui_alv_grid
          IMPORTING e_row e_column.
    ENDCLASS.
    DATA: obj1 TYPE REF TO cl_dbclick.
          CLASS cl_dbclick IMPLEMENTATION
    CLASS cl_dbclick IMPLEMENTATION.
      METHOD dbl.
        IF e_row-rowtype = space AND NOT e_row-index IS INITIAL.
          READ TABLE it_mara INDEX e_row-index INTO wa_mara.
        SELECT * FROM marc INTO TABLE it_marc
        WHERE matnr = wa_mara-matnr.
            CALL METHOD obj_custom->free
            EXCEPTIONS
              cntl_error        = 1
              cntl_system_error = 2
              OTHERS            = 3.
          IF sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL SCREEN '200'.
        ENDIF.
      ENDMETHOD.                    "dbl
    ENDCLASS.                    "cl_dbclick IMPLEMENTATION
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE user_command_0100 INPUT.
      CALL METHOD obj_custom->free
        EXCEPTIONS
          cntl_error        = 1
          cntl_system_error = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Module  filldata  OUTPUT
          text
    MODULE filldata OUTPUT.
      CREATE OBJECT obj_custom
        EXPORTING
          container_name = 'CONTROL'.
      CREATE OBJECT obj_alv
        EXPORTING
          i_parent = obj_custom.
      CREATE OBJECT obj1.
      SET HANDLER obj1->dbl FOR obj_alv.
      CALL METHOD obj_alv->set_table_for_first_display
        EXPORTING
       i_buffer_active               =
       i_bypassing_buffer            =
       i_consistency_check           =
          i_structure_name              = 'MARA'
          is_variant                    = wa_variant
          i_save                        = x_save
       i_default                     = 'X'
          is_layout                     = wa_layout
       is_print                      =
       it_special_groups             =
       it_toolbar_excluding          =
       it_hyperlink                  =
       it_alv_graphics               =
       it_except_qinfo               =
       ir_salv_adapter               =
        CHANGING
          it_outtab                     = it_mara
       it_fieldcatalog               =
       it_sort                       =
       it_filter                     =
    EXCEPTIONS
       invalid_parameter_combination = 1
       program_error                 = 2
       too_many_lines                = 3
       others                        = 4
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDMODULE.                 " filldata  OUTPUT
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  STATUS_0200  OUTPUT
          text
    MODULE status_0200 OUTPUT.
      SET PF-STATUS 'STATUS'.
    *  SET TITLEBAR 'xxx'.
    SUPPRESS DIALOG.
         SET PARAMETER ID 'MAT' FIELD wa_mara-matnr.
    LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
    *WRITE:/ wa_mara-matnr,
           wa_mara-mbrsh,
           wa_mara-meins.
      CREATE OBJECT obj_custom
        EXPORTING
          container_name = 'CONTROL'.
      CREATE OBJECT obj_alv
        EXPORTING
          i_parent = obj_custom.
      CALL METHOD obj_alv->set_table_for_first_display
        EXPORTING
       i_buffer_active               =
       i_bypassing_buffer            =
       i_consistency_check           =
          i_structure_name              = 'MARC'
       is_variant                    = wa_variant
       i_save                        = x_save
       i_default                     = 'X'
       is_layout                     = wa_layout
       is_print                      =
       it_special_groups             =
       it_toolbar_excluding          =
       it_hyperlink                  =
       it_alv_graphics               =
       it_except_qinfo               =
       ir_salv_adapter               =
        CHANGING
          it_outtab                     = it_marc
       it_fieldcatalog               =
       it_sort                       =
       it_filter                     =
    EXCEPTIONS
       invalid_parameter_combination = 1
       program_error                 = 2
       too_many_lines                = 3
       others                        = 4
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDMODULE.                 " STATUS_0200  OUTPUT
    *&      Module  layout  OUTPUT
          text
    MODULE layout OUTPUT.
      wa_layout-grid_title = 'MATERIAL DATA'.
      wa_layout-zebra = 'X'.
    wa_layout-edit = 'X'.
    ENDMODULE.                 " layout  OUTPUT
    *&      Module  variant  OUTPUT
          text
    MODULE variant OUTPUT.
      wa_variant-report = 'ZALV_GRID1'.
      x_save = 'A'.
    ENDMODULE.                 " variant  OUTPUT
    *&      Module  USER_COMMAND_0200  INPUT
          text
    MODULE user_command_0200 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          CALL METHOD obj_custom->free
            EXCEPTIONS
              cntl_error        = 1
              cntl_system_error = 2
              OTHERS            = 3.
          IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          LEAVE TO SCREEN '100'.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    thanks,
    raji
    reward if helpful

  • Why when I double click an image in "pictures" does it always open into Elements 10 ?

    Why when I double click an image in "pictures" does it always open into Elements 10?

      Only if you set Elements as the default application e.g. for opening all jpeg files.
    You can make file associations via the control panel.
     

  • BDC Ok-Code for Double Click

    Hi ,
    Could anyone let me know the BDC OK Code for Double click.
    I need to select a row by double clicking it in my recording but not able to capture the code for it.
    Please do the needful.
    Thanks in Advance,
    Sowmmya B

    Hi sowmmya,
    1. If the row you are talking about is
       ALV Grid OO concepts,
       then i think there is a problem.
       It won't work with BDC as u are trying.
    2. Well, for getting the code,
       before double clicking go in debug mode /H
       and then double click.
    3. Now in deubbing mode,
      see the value of sy-ucomm.
    regards,
    amit m.

  • I Already checked the general preferences box "double click titlebar to minimize windows," all applications responding to this command EXCEPT for Safari, why?

    I thought that I had done something wrong, but it appears that Safari is indeed unresponsive to the double click title bar to minimize command.
    All my other applications are responsive to this, but not Safari.
    Also, maybe someone could help me by answering these questions:
    how it is possible to save safari browsers with the tabs that are open, so when I exit out and reopen safari I can resume where I was before?
    why is it that I don't see that little red circle with the number at the bottom of the Safari icon that tells me how many browser windows are currently open so I can juggle between them?
    Why is it that you can no longer click on the application icon to shrink the window? I am positive that this was possible on previous mac OS.

    I had missed that double-click title bar was no longer working in Safari (I really miss windowshading and tabbed finder windows!), until I read this thread from sharoo..
    Carolyn Samit wrote:
    that Safari is indeed unresponsive to the double click title bar to minimize command.
    All my other applications are responsive to this, but not Safari.
    Since it's application specific, to to ~/Library/Caches/com.apple.Safari
    Move the Cache.db file from the com.apple.Safari folder to the Trash.
    Restart your Mac.
    I'm seeing the same problem now. Tried deleting Cache.db, also deleted Preferences:com.apple.Safari.plist in reference to another thread; still don't get any response to double-clicking title bar. Lately, I usually do it accidentally, but it would seem to be a handy shortcut, especially since it's advertised as being present.
    Note: I just tried it in other applications, and I don't see minimizing with double-click anywhere, and can't find any preferences setting for it. [Panic sets in... - am I losing my mind?] I tried looking in the Secrets prefpane, with no luck there either.
    What am I missing?
    Has this been changed? I also noticed that the green (right-size) button behaves differently now, and there are several ways to arrange icons in the finder, some like the old way, some very different and confusing (I may have figured that out, but have to retry when I get there).

  • How do I change: when I double click on a day to add a new event it defaults to All Day and Busy

    iCal 5.0.2 (1571) Is there any way to change this? I can't do it in preferences.
    This is a real pain. To make an event for a specific time I have to double click again, uncheck "All Day" and then put in the time for the start of the event. Even then, if I put in the start time, the end time remains at 6:30 PM, so I have to change that too.
    If I really do want an All Day event, why does it sometimes default to Busy, rather than always to Free?
    The old iCal was far superior in this regard; double click once on a day and the add an event dialogue box appears, defaulting to a time close to when you were making the event, and, if my memory serves correct observing the preference I set with respect to default length of the event.
    I'm aware that Command N gets me a new Quick Event, its a bit better in that if the event i enter opens the big "add an event dialogue box", it has defaulted to an hour long event. But, if I click on a day, and then hit Command N, the new event is put in Today, and not the day I had selected. It also defaults to All Day, unless I put in a time for the event in the Quick Event box.  Why would I do that when I know I want to enter info into a number of fields, and doing so is easiest from the big dialogue box. If i don't enter a time in Quick Event, or enter a day, I still have to double click the event that was created by Quick Event to open the big dialogue box, and start fresh entering everything.  So, I find Quick Event's implimentation cumbersome, overall ending up with more keystrokes and clicks to enter the details I normally enter, than the old iCal.
    So, if someone knows how to change the double click behaviour back to the old way, or how to get Quick Event to open the dialogue box on the day i have already selected, any help will be appreciated.
    Also, is there some way to get this feedback to Apple? Support SiteMap doesn't show a link for feedback.
    Thanks
    Ian

    I have sort of the exact same problem. Extremely far away from user friendly
    I have an second issue as well: When I hook off all-day it comes up with an 8 hour event!
    And then if I put in a late start hour it pushes end time to next day due to the 8 hour event suggestion.
    All in all this gives a lot of changes just to enter an event.
    Command N
    I learnt from your input to use this fuction. At least that comes up with a one hour event as default.

  • Why can I no longer open a PE image directly in PE 11 by simply double clicking the image?

    In contrast to previous versions, for whatever reason, I cannot open a PhotoShop Elements image directly by simply 'double clicking' on the image. When I do this with PE 11, PE 11 opens blank and I then have to go to the Open menu and find the image I want to open (the very image I 'clicked' on in the first place)? Why this extra time consuming step?
    Thanks,
    Dale

    Thanks for the reply.
    However, I don't understand your answer.
    To refresh my memory, I just now selected a jpg. image and opened it with PSE 10. When PSE 10 opened, there was my image, ready to be worked with. However, when I repeated the exact same thing with with PSE 11, PSE 11 opened a blank page and I had to go to the Open menu and reopen my image. I don't understand why this extra step is required with PSE 11.
    The screen shot you suggested means nothing to me in post http://forums.adobe.com/message/4876725#4876725 as I've no idea where it comes from or what I'm looking at.
    Can you provide further details?
    Thanks.

  • When double-clicking thumbnails, images "mosaic" or "tile"

    Since the Snow Leopard Graphics Update, images flash briefly in a jagged "mosaic" or "tile" manner before they convert to full size when double-clicking thumbnails. This happened briefly right after installing the update, then went away after a restart, but now it's back. Running Aperture 3.0.3 on my MBP 2.5GHz with OS 10.6.4.

    Thanks for your replies guys. First I don't know happened to the screenshot I posted but here it is again. I hope you guys were/are able to get anything from it.
    When I first noticed the issue I backed up my iPhoto library. Next I upgraded to Snow Leopard since this computer was running Leopard. I also upgraded to iPhoto '09 since it was running an older version. Still no fix. I then uninstalled iphoto and its pref files with appzapper and then reinstalled iPhoto '09. Again no luck. I then created a new user account and the same thing happens- no fix.
    @Terrance- I opened the app Monolingual and I see that the default languages selected include: Austrailia, Canada, New Zealand, UK, and US English, which I deleted. The Language just "English" is not selected and was not deleted. Could this be it?
    Thanks again. I will look into the links you provided, Madison and will be back to report with points.

  • Fcode for double click

    Hi All,
    I want to handle double click on ALV grid, I know there is a method of handling events, but I want to look into all the options.
    So I want to know how can i catch the double click and wat will the sy-ucomm for it ?
    thanks
    AJ

    Welcome to SCN!!
    So I want to know how can i catch the double click and wat will the sy-ucomm for it ?
    Just put the /h in command bar and double click on any line and see the value of sy-ucomm in debugger.

  • Disabling normal JButton click behaviour for double click

    This seems quite a poser.
    Basically I have a test JButton for testing double click speed. This is in a dialog with the JButton and a JSlider.
    I have some code which detects the double click, I add this as using 'addMouseListener()', but I need to disable the normal single click action of the JButton to replace it by the double click code calling 'doClick()'.
    How do I disable the normal single click functionality ?
    I have looked through the SDK source but cannot fathom the normal behaviour of the event mechanism.
    Many thanks in advance.
    Aaron

    Here's an entire program. When I run it, it only catches doubleclicksimport javax.swing.*;
    import java.awt.event.*;
    public class Test {
      public static void main(String[] args) {
        TestFrame testFrame = new TestFrame("Test");
        testFrame.pack();
        testFrame.setSize(200,200);
        testFrame.show();
    class TestFrame extends JFrame {
      public TestFrame(String Title) {
        super(Title);
        JPanel myContent = (JPanel)getContentPane();
        JButton myButton = new JButton("Hello");
        myContent.add(myButton);
        myButton.addMouseListener(new MouseAdapter() {
          public void mouseReleased(MouseEvent me) {
         if (me.getClickCount()==2) System.out.println("DoubleClick!!");
      protected void processWindowEvent(WindowEvent e) {
        super.processWindowEvent(e);
        if (e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); }
    }

  • Why does elements 11 change photos when double clicked on?

    why does this happen?

    The organizer .was enjoying using quick fix .pictures were good then it
    started when I opened it and double clicked it it goes overexposed
    Phil Christie

  • How do I import GPS information for all of my images from Bridge into Lightroom 5.3?

    After importing my images into Lightroom 5.3, I discovered that the GPS location data was imported for some images, but not for others.  When I checked the metadata files for the same images in Bridge, the location data was present for all of my recently downloaded images.
    Why would Lightroom import the GPS data for some images and not others?
    Is there any way to import the location data from the Bridge metadata files into Lightroom?

    Tony,
    Thank you for your suggestion.  I had already tried several approaches along those lines without success.  In the end, the GPS data was still present in Bridge metadata file for each image, but not in the Lightroom metadata files for the same images.
    So, I went back to Lightroom, and did some further exploring on the internet for solutions.  Just as I was wondering whether or not the problem might be rooted in my download presets (i.e., setting copyright into, etc.), I stumbled across a reference by a Pentax owner that identified the same problem.  Here's the link:
    http://www.pentaxforums.com/forums/115-pentax-k-5/203274-gps-data-not-importing-into-light room-4-2-a.html
    In a nutshell, I can download all of the metadata, including the GPS location information, but only if I do NOT use any metadata presets.  If I use a metadata preset when downloading my images, no GPS data can be seen in the Lightroom metadata files, but it does import into Bridge's metadata files.  I've now tried this both ways, several times now, and have verified this result. 
    I also tried re-downloading images with no presets, and replacing (copying over) the image from my original download.  This did not solve the missing GPS data in the Lightroom metadata.  From this point, all that I could think of doing was removing all of my recent downloads from Lightroom, and starting over.  However, I'd already started editing my images, and I didn't want to lose that time.
    So, I re-downloaded all of my recent images from my memory cards as a copy into each file without any metadata presets.  Then, after selecting the copy first, followed by selecting the original (order is important), I toggled 'Sync Metadata' under the Metadata tab in Lightroom.  Voila, the GPS data appeared in the original metadata.  When this is done for all of my images, I will delete the second copies in my files.  Once I am satisfied that everything is okay, and my images are backed up satisfactorily, and only then, will I reformat my memory cards. 
    This whole experience has surfaced an interesting quirk in Lightroom, or in my Lightroom settings that I don't understand.  It may be something that Adobe might want to look into further, if others are finding a similar problem.

Maybe you are looking for

  • I am trying to find the downloadable update to ps cs6 for inkling

    I have a new inkling and am told that i need the ps cs6 update to use the manager in inkling.  Can someone direct me to the link?

  • Time Machine disk read only

    Hello everybody, I've been using Time Machine ever since Leopard came out and I never had a problem. However, things started to get messy recently. Leopard keeps telling me that my external drive is read only when I mount it. I googled for a solution

  • How to compile a java file in a java program

    Hi, I don't know to compile a java file in a java class. Could somebody help me? Thanks.

  • ACS 5.4 backup status in syslog

    Have raised a TAC for this but thought I'd post here too. We are running ACS v5.4 Patch 1. We have noticed that ACS will not produce syslog messages about scheduled backups (success or failure) (1)    From the GUI, under "System Administration >  Con

  • Epson Printer Driver Update 2.3.1

    Software Update just informed me that this update is available; for now I've chosen to ignore it because a) my AIO printer functions flawlessly and b) I thought I'd read that the new update tends to result in problems. Has anyone installed it and exp