Lightroom 2.x - Remapping Library / Develop module keyboard shortcuts (Windows)

SOLUTION: LR2 Library/Develop Keyboard Shortcuts
Prepared by: Gordon McKinney
http://www.night-ray.com
For windows users - this is the latest update to my keyboard shortcuts for Library and Develop module. It has improved performance through caching.
Quick access to Develop and Library module adjustments via your keyboard number pad. You'll need
www.AutoHotKey.com to use this script.
; Gordon's Lightroom 2.0 Shortcuts Aug-22 2008
; www.night-ray.com
; Use numpad to perform certain develop and library functions.
; This effectively disables the number pad for digit entry
; (except 5 and 0) please use the main keyboard instead.
; Left/Right - Prev or Next photo
; Up/Down - Exposure
; Minus/Plus - Fill Light
; Page Up/Dn - Contrast
; Home/End - Color Temperature
; Div/Mult - Color Tint
; Enter - Paste Previous
; Dot (Delete) - AutoTone
; F9 Library Module
; F10 Develop Module
; F11 Slideshow Module
; F12 Web Module
SetTitleMatchMode,2
#IfWinActive, Lightroom
F9::Send ^!1
F10::Send ^!2
F11::Send ^!3
F12::Send ^!4
#IfWinActive
; *** DEVELOP SHORTCUTS ***
#IfWinActive, Lightroom - Develop
numpad4:: Send ^{Left}
numpad6:: Send ^{Right}
numpad8:: lrdAdd(09)
numpad2:: lrdSub(09)
NumpadAdd:: lrdAdd(11)
NumpadSub:: lrdSub(11)
numpad9:: lrdAdd(14)
numpad3:: lrdSub(14)
numpad7:: lrdAdd(04)
numpad1:: lrdSub(04)
NumPadMult:: lrdAdd(05)
NumPadDiv:: lrdSub(05)
NumPadDot:: Send ^u
NumPadEnter:: Send ^!v
lrdAdd(delta) {
instance := lrGetControl( Static, 6, "Treatment :", delta )
ControlClick, Static%instance%
Send {=}
lrdSub(delta) {
instance := lrGetControl( Static, 6, "Treatment :", delta )
ControlClick, Static%instance%
Send {-}
#IfWinActive
; *** LIBRARY SHORTCUTS ***
#IfWinActive, Lightroom - Library
numpad4:: Send ^{Left}
numpad6:: Send ^{Right}
numpad8:: lrlClick(03)
numpad2:: lrlClick(02)
NumpadAdd:: lrlClick(11)
NumpadSub:: lrlClick(10)
numpad9:: lrlClick(23)
numpad3:: lrlClick(22)
numpad7:: lrlClick(-6)
numpad1:: lrlClick(-7)
NumPadMult:: lrlClick(-2)
NumPadDiv:: lrlClick(-3)
NumPadDot:: Send ^u
NumPadEnter::Send ^!v
lrlClick(delta) {
instance := lrGetControl( Button, 6, "Auto Tone", delta )
ControlSend, Button%instance%, {SPACE}, ahk_class AgWinMainFrame
#IfWinActive
; Fetch the Control Instance using Type, Title, and Instance Delta
lrGetControl( type, typeLen, title, delta ) {
global lrLastTitle, lrLastCBase, lrLastCache
if (lrLastTitle = title and lrLastCache > A_TickCount )
; Cached! Saves time.
return lrLastCBase + delta
else
WinGet, ActiveControlList, ControlList, ahk_class AgWinMainFrame
Loop, Parse, ActiveControlList, `n
IfInString, A_LoopField, %type%
ControlGetText, text, %A_LoopField%
IfInString, text, %title%
StringMid, controlbase, A_LoopField, typeLen+1
lrLastTitle := title
lrLastCBase := controlbase
lrLastCache := A_TickCount + (120*1000)
return controlbase + delta
return 999999
; End

latest update... I will work on making the script 'adapt' the LR's changing control IDs. However develop seems reliable. Until then - use this version
>; --------------------------------------------------
; Gordon's Lightroom 2.0 Shortcuts
; www.night-ray.com
SetTitleMatchMode,2
#IfWinActive, Lightroom
; Remap F keys for module change
F9::Send ^!1 ; F9 Library Module
F10::Send ^!2 ; F10 Develop Module
F11::Send ^!3 ; F11 Slideshow Module
F12::Send ^!4 ; F12 Web Module
#IfWinActive
; *** DEVELOP SHORTCUTS ***
#IfWinActive, Lightroom - Develop
; Use numpad to perform certain quick develop functions
; This effectively disables the number pad for digit entry
; please use the main keyboard instead.
; Left/Right - Prev or Next photo
; Up/Down - Exposure
; Minus/Plus - Fill Light
; Page Up/Dn - Contrast
; Home/End - Color Temperature
; Div/Mult - Color Tint
; Enter - Paste Previous
numpad4:: Send ^{Left}
numpad6:: Send ^{Right}
numpad8:: lrAdd( "Static144" )
numpad2:: lrSub( "Static144" )
NumpadAdd:: lrAdd( "Static146" )
NumpadSub:: lrSub( "Static146" )
numpad9:: lrAdd( "Static149" )
numpad3:: lrSub( "Static149" )
numpad7:: lrAdd( "Static139" )
numpad1:: lrSub( "Static139" )
NumPadMult::lrAdd( "Static140" )
NumPadDiv:: lrSub( "Static140" )
NumPadEnter::Send ^!v
lrAdd(class) {
ControlClick, %class%
Send {=}
lrSub(class) {
ControlClick, %class%
Send {-}
#IfWinActive
; *** DEVELOP SHORTCUTS ***
#IfWinActive, Lightroom - Library
numpad4:: Send ^{Left}
numpad6:: Send ^{Right}
NumPadEnter::Send ^!v
#IfWinActive
; End

Similar Messages

  • SOLUTION: LR2 Develop Module Keyboard Shortcuts

    Quick access to Develop and Library module adjustments via your keyboard number pad. You'll need www.AutoHotKey.com to use this script.
    >; --------------------------------------------------
    ; Gordon's Lightroom 2.0 Shortcuts Aug-11 2008
    ; www.night-ray.com
    ; Use numpad to perform certain develop and library functions.
    ; This effectively disables the number pad for digit entry
    ; (except 5 and 0) please use the main keyboard instead.
    ; Left/Right - Prev or Next photo
    ; Up/Down - Exposure
    ; Minus/Plus - Fill Light
    ; Page Up/Dn - Contrast
    ; Home/End - Color Temperature
    ; Div/Mult - Color Tint
    ; Enter - Paste Previous
    ; Dot (Delete) - AutoTone
    ; F9 Library Module
    ; F10 Develop Module
    ; F11 Slideshow Module
    ; F12 Web Module
    SetTitleMatchMode,2
    #IfWinActive, Lightroom
    F9::Send ^!1
    F10::Send ^!2
    F11::Send ^!3
    F12::Send ^!4
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Develop
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrdAdd(09)
    numpad2:: lrdSub(09)
    NumpadAdd:: lrdAdd(11)
    NumpadSub:: lrdSub(11)
    numpad9:: lrdAdd(14)
    numpad3:: lrdSub(14)
    numpad7:: lrdAdd(04)
    numpad1:: lrdSub(04)
    NumPadMult:: lrdAdd(05)
    NumPadDiv:: lrdSub(05)
    NumPadDot:: Send ^u
    NumPadEnter:: Send ^!v
    lrdAdd(delta) {
    instance := lrGetControl( Static, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {=}
    lrdSub(delta) {
    instance := lrGetControl( Static, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {-}
    #IfWinActive
    ; *** LIBRARY SHORTCUTS ***
    #IfWinActive, Lightroom - Library
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrlClick(03)
    numpad2:: lrlClick(02)
    NumpadAdd:: lrlClick(11)
    NumpadSub:: lrlClick(10)
    numpad9:: lrlClick(23)
    numpad3:: lrlClick(22)
    numpad7:: lrlClick(-6)
    numpad1:: lrlClick(-7)
    NumPadMult:: lrlClick(-2)
    NumPadDiv:: lrlClick(-3)
    NumPadDot:: Send ^u
    NumPadEnter::Send ^!v
    lrlClick(delta) {
    instance := lrGetControl( Button, "Auto Tone", delta )
    ControlSend, Button%instance%, {SPACE}, ahk_class AgWinMainFrame
    #IfWinActive
    ; Fetch the Control Instance using Type, Title, and Instance Delta
    lrGetControl( type, title, delta ) {
    WinGet, ActiveControlList, ControlList, ahk_class AgWinMainFrame
    Loop, Parse, ActiveControlList, `n
    IfInString, A_LoopField, %type%
    ControlGetText, text, %A_LoopField%
    IfInString, text, %title%
    StringMid, controlbase, A_LoopField, 7
    controlbase := controlbase + delta
    return %controlbase%
    return 999999
    ; End

    Performance enhancement with caching:
    >; ----------------------------------------
    ; Gordon's Lightroom 2.0 Shortcuts Aug-12 2008
    ; www.night-ray.com
    ; Use numpad to perform certain develop and library functions.
    ; This effectively disables the number pad for digit entry
    ; (except 5 and 0) please use the main keyboard instead.
    ; Left/Right - Prev or Next photo
    ; Up/Down - Exposure
    ; Minus/Plus - Fill Light
    ; Page Up/Dn - Contrast
    ; Home/End - Color Temperature
    ; Div/Mult - Color Tint
    ; Enter - Paste Previous
    ; Dot (Delete) - AutoTone
    ; F9 Library Module
    ; F10 Develop Module
    ; F11 Slideshow Module
    ; F12 Web Module
    SetTitleMatchMode,2
    #IfWinActive, Lightroom
    F9::Send ^!1
    F10::Send ^!2
    F11::Send ^!3
    F12::Send ^!4
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Develop
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrdAdd(09)
    numpad2:: lrdSub(09)
    NumpadAdd:: lrdAdd(11)
    NumpadSub:: lrdSub(11)
    numpad9:: lrdAdd(14)
    numpad3:: lrdSub(14)
    numpad7:: lrdAdd(04)
    numpad1:: lrdSub(04)
    NumPadMult:: lrdAdd(05)
    NumPadDiv:: lrdSub(05)
    NumPadDot:: Send ^u
    NumPadEnter:: Send ^!v
    lrdAdd(delta) {
    instance := lrGetControl( Static, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {=}
    lrdSub(delta) {
    instance := lrGetControl( Static, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {-}
    #IfWinActive
    ; *** LIBRARY SHORTCUTS ***
    #IfWinActive, Lightroom - Library
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrlClick(03)
    numpad2:: lrlClick(02)
    NumpadAdd:: lrlClick(11)
    NumpadSub:: lrlClick(10)
    numpad9:: lrlClick(23)
    numpad3:: lrlClick(22)
    numpad7:: lrlClick(-6)
    numpad1:: lrlClick(-7)
    NumPadMult:: lrlClick(-2)
    NumPadDiv:: lrlClick(-3)
    NumPadDot:: Send ^u
    NumPadEnter::Send ^!v
    lrlClick(delta) {
    instance := lrGetControl( Button, "Auto Tone", delta )
    ControlSend, Button%instance%, {SPACE}, ahk_class AgWinMainFrame
    #IfWinActive
    ; Fetch the Control Instance using Type, Title, and Instance Delta
    lrGetControl( type, title, delta ) {
    global lrLastControlBase, lrLastTitle, lrLastDelta
    if (lrLastTitle = title and lrLastDelta = delta)
    ; Cached! Saves time.
    return lrLastControlBase
    else
    WinGet, ActiveControlList, ControlList, ahk_class AgWinMainFrame
    Loop, Parse, ActiveControlList, `n
    IfInString, A_LoopField, %type%
    ControlGetText, text, %A_LoopField%
    IfInString, text, %title%
    StringMid, controlbase, A_LoopField, 7
    controlbase := controlbase + delta
    lrLastControlBase := controlbase
    lrLastTitle := title
    lrLastDelta := delta
    return %controlbase%
    return 999999
    ; End

  • Lightroom shows no image in develop module

    I just downloaded the new Lightroom and when in Develop module, I just get a blue screen. When I select before and after in develop, I get picture on L and blue screen on R.

    Hi All,
    This is a GPU related issue. Please update your GPU drivers from the manufacturers website.
    In the mean while, disabling "Use Graphics Processor" (Preferences > Performance), should help load the Develop module.
    For more details, Adobe Photoshop Lightroom Help | Lightroom GPU FAQ
    Similar post, Lightroom CC - blue box in develop module
    ~ Arpit

  • I have lightroom 5 bought the download version on the adobe site. month ago did the trial version of cc it has expired. now on lightroom it says that my develop module is disabled. can't locate the one i bought on the site to redownload because they have

    i have lightroom 5 bought the download version on the adobe site. month ago did the trial version of cc it has expired. now on lightroom it says that my develop module is disabled. can't locate the one i bought on the site to redownload because they have changed the adobe site drastically.

    Adobe - Lightroom : For Windows
    Adobe - Lightroom : For Macintosh
    Download the latest version, fill in your serial number that you received when you bought it when you are asked for it.

  • Keyboard Shortcuts Window not opening ?

    Hi,
    I am wondering if anyone else is facing this weird bug? The keyboard shortcut window is not opening in my Premiere Pro...any suggestions/ advice ?
    Thanks !

    Have you used the "Sync Now" option?
    The reason I asked is that I tried that option but typed in the wrong email address and that resulted in the keyboard shortcut window not opening on my laptop.
    I got a "Sync failed" error message but after I typed in the right address on my main computer, syncing was successful and the keyboard shortcut window reappeared
    on the laptop.
    HTH

  • Lightroom 2.3 crashes in Development module

    I am having a brand new problem with LR 2.2 & 2.3 with my Dell 730x 64bit 6GB Ram.  I am running VIsta Home Premium 64 bit.   I have been running LR 2 since it came out with no trouble - until a few days ago.
    I also have a Sony Monitor as the #1 Monitor on the Nvidea GeForce 9800 GT using the Generic PnP Monitor driver from Microsft - 6.0.6001.1800 dated 6/21/2006.
    I have a second monitor which I use for Lightroom: - Dell 2007FP Monitor with Nvidia GeForce 9800 GT Video card with all settings at defaults. The driver is NVIDIA v 7.15.11.7744 dated 7/17/2008. This was the original driver and has been performing well for months
    This has worked splendidly since I bought this high end PC in Feb, 2009.
    . In the last few days, however LR crashes any time I try to use the Develop module on the Dell monitor.  I get "Adobe Photoshop Lightshop 64 bit has stopped working" when I try to crop or use other tools at the top of the Develop list.  The lower tools like exposure changes the histrogram, but not the image. This also happens when I switch the driver on the Dell to the Generic PnP Monitor driver. This happens for NEF and JPG files.
    When I run Lightroom on the smaller Sony screen, the photos don't display - only gray rectangles for photos. However, in the Develop menu, when I try to crop a gray rectangle, the image appears and the crop works OK. When I finish the crop, the image goes back to a gray rectangle. It does not, however crash the program. This makes Lightroom unusable since photos and thumbnails are not visible. I believe this may have been happening for a longer time, but since it worked fine on the larger Dell screen, I was OK.
    All the rest of the LR modules seem to to work. .
    Here's a list of things I've tried with no success - they all resulted in the Develop Module crashing LR.
    The problem started a few days ago, so I went ahead installed the update to go from Service Pack 1 to Service Pack 2.  There was no diffrence.
    I have re-booted with only MS services - no others and no startup using msconfig - same problem
    I have deleted the preferences file and created a new one - no luck
    I have imported new files - same sympton
    I have loaded other catalogs - same sympton
    I have uninstalled 2.3 re- installed ver 2.2 - no luck
    I have uninstalled 2.3 and installed the 32 bit version of LR - same sympton
    I have run chkdsk on my drive - no problems, no difference
    I have removed the Develop Presets, External Editor Presets, Modules lrplugins, Local adjustment Presents from  AppData\Roaming|Adobe\Lightroom directory - no problem
    I have tried to use system restore several times  - to dates prior to recent windows updates, but system restore won't work???
    Photoshop CS4 64 and 32 bit work fine, but it doesn't have the speed of editing NEF files that LR does when it works.
    Any other ideas on what to try? I have completely changed my workflow to do 80%+ Lightroom and loved it. The thought of returning to Photoshop is devestating!

    FIXED!!
    Thanks for the suggestions from those who replied. I spent 90 minutes last night with the Dell support team who provided me with a previously unaccessable new driver for my NVIdia GeForce 9800 CT - this one was version 7.15.11.8130 dated 12/30/2008. They also provided me with the new NVidia Display Control Panel.   This program is in windows/system32/  and runs with the file name: nvsvc.exe.
    Two suggestions were to turn off this program. It was not running, and typically has not been running over the past few months. I started it to see if it made a difference. It did not.  Then I turned off and it still didn't change any LR problems. My guess is that there are some options that can mess stuff up, but I only had the defaults set.
    Another suggestion from KDWAVES: Gray rectangles when using the Sony monitor is a sympton of a corrupt color profile. If you use color calibration, try re-calibrating the Dell. If you are using the default color profile, try changing it.
    My Sony was using some default, so I loaded the Dell Monitor.icc color profile created by my color calibration hardware/software (Eye One Match v3) and appied to the Sony.  It worked and the gray images were displayed properly. Also all the Develop modules worked fine. I was a little disappointed, since the Sony is a smaller moniter and I bought the larger Dell Monitor specifically to be the color calibrated large monitor for photo editing.  So I moved lightroom to the Dell Monintor .....    AND IT WORKED GREAT!!   Thanks much KDWAVES!
    I had only calibrated the one monitor since both monitors were run by the NVidia video card and it seemed to only run one color profile at a time. I didn't bother to calibrate the Sony, but just adjusted the color controls manually to make the screen look like the Dell.  Now that both monitors have the same color calibration file, everything seems fine.
    I've listed all the details for the next person who gets this surprise. I still can't figure why it ran OK for the last few months, on the Dell monitor.
    I can't thank you guys enough for helping. Maybe the next victim won't take the five days it took me to unravel this one.
    This is my first Vista machine and I bought theVista 64bit version and the Intel Core i7:  quad & hyperthread processers for the Adobe 64bit software. When I'm not chasing bugs like this one, the machine and the Adobe software run REALLY FAST. I have been able to double my photo coverage since the Lightroom RAW file import / export / render / edit and everything goes about as fast I can click the keyboard - unlike any of the Adobe stuff has behaved on my prior PC's. I have even switched my sports photos to LR exclusively since it's so fast,
    P.S. CR Henderson's advice on a new Nvidia driver dated May 6th 2009 is great idea. I will be hunting for that next.  I have not had any Photoshop CS4 problems in either 32bit or 64bit versions (except not many plugins run in the 64 bit version). But I didn't buy this PC until I confirmed that my NVidia GeForce 9800 CT video card was on Adobe's approved list.

  • Lightroom 4 Beta crash problem-Develop module

    I have a problem importing a set of .cr2 photos taken in 2010. There are about 75 photos and when I import them and go to the Develop module, the controls are showing those for Lightroom 3 (recovery, fill light, etc.). Then the program encounters a problem and stops working and I have to shut down. I have checked my desktop icon and the path is looking to LR4 (I don't have LR3).
    Now this problem seems to be happening only with this group of photos since I've tested others. There is nothing different from any other raw files I import.

    So "Relative", in this case, is similar to Absolute/Relative?  It would appear to be the case. The "Absolute" color choice is in the Photoshop print dialog, as are the other choices.
    I think.

  • Lightroom 4.1 freezeing on Development module

    So I have a Macbook Pro with the latest veriosn of Lion and after I updated to Lightroom 4.1 it is stuck on the development module. Any suggestions on how to fix this? I'm still new to Lightroom so not sure how to fix this problem or if I just have to wait for adobe to come out with an update to fix it.
    Thanks

    My files are just JPEG photos that I move from iPhoto to desktop so I can import them to Lightroom to do some nice editing and retouching to. I am still figuruing Lightroom out so I am playing around with the presests and other "editing" buttons I find. The photo that I got to work in Develop mode was about 1MB in size and it did load after a minute or 2.  The other photo that I was going to play around with was about 2.9MB in size but still a JPEG photo..so I'm not to sure why it was freezing on such a small photo..

  • Lightroom 3.3 hangs in develop module.

    Hi,
    I've been a long-time user of lightroom. I've recently replaced my graphics card (from 9500GT to 450GTS) and I'm starting to see quite frequent apphangs. I never saw these before the change in graphics card, but I did change it a couple of weeks ago and I only started seeing these crashes on 31/3. Having said that, I haven't used LR for a few weeks, so this still might be consistent. As far as I can tell, it only happens when LR is in the develop module and most of the time it's when LR is loading an image, the spinning disk freezes and the program hangs requiring a kill/reboot. I've also seen it today with a sharpen operation though. The hang is random - I can do exactly the same sequence of operations on the reboot and they work fine. The symptoms are very similar to the ones a lot of people reported a few years ago with LR 2 although thge suggested fix there (switch to develop->quit->restart) doesn't seem to improve stability.  I have the latest Nvidia drivers, and the machine is rock solid apart from this problem. I've tried LR 3.4 beta and that still exhibits the problem.
    Anyone else seen this? Anyone know of any workarounds - it's pretty frustrating - it can be anywhere from 30 seconds to 30 minutes before it happens?
    The signature of the problem is:
    Version=1
    EventType=AppHangB1
    EventTime=129468332725694479
    ReportType=3
    Consent=1
    ReportIdentifier=7b6113c3-62b6-11e0-ae0e-bcaec5991709
    IntegratorReportIdentifier=7b6113c4-62b6-11e0-ae0e-bcaec5991709
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=lightroom.exe
    Sig[1].Name=Application Version
    Sig[1].Value=3.3.0.10
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4ce58483
    Sig[3].Name=Hang Signature
    Sig[3].Value=979b
    Sig[4].Name=Hang Type
    Sig[4].Value=513
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=2057
    DynamicSig[22].Name=Additional Hang Signature 1
    DynamicSig[22].Value=979bf393bed3406173114ae9a115a41d
    DynamicSig[23].Name=Additional Hang Signature 2
    DynamicSig[23].Value=3ce7
    DynamicSig[24].Name=Additional Hang Signature 3
    DynamicSig[24].Value=3ce7386b5e35e43013e6ea065fa68452
    DynamicSig[25].Name=Additional Hang Signature 4
    DynamicSig[25].Value=979b
    DynamicSig[26].Name=Additional Hang Signature 5
    DynamicSig[26].Value=979bf393bed3406173114ae9a115a41d
    DynamicSig[27].Name=Additional Hang Signature 6
    DynamicSig[27].Value=3ce7
    DynamicSig[28].Name=Additional Hang Signature 7
    DynamicSig[28].Value=3ce7386b5e35e43013e6ea065fa68452

    Hi Dan,
    OK, so now I'm confused... I have removed the profiles for the monitors (one for each) and now use the manufacturer supplied one and haven't been able to get a crash since yesterday when I did the change. I'm not 100% confident the bug has gone, but it's passed my "it should happen by now" criteria. I'm wondering if the size of the .icc profiles could have an influence. When I calibrate my monitors, I always do a full calibration which stores the data as a full LUT iccview.de lists it as:
    Description Tag:
    Monitor_2_17-03-2011
    ICC-Tag: BToA1 (Colorimetric)
    Calculation: LUT with 35937 grid points
    Header:
    size = 690296 bytes
    CMM = 'APPL'
    Version = 2.4.0
    Device Class = Display
    Color Space = RGB
    Conn. Space = XYZ
    Date, Time = 17 Mar 2011, 15:50:32
    Platform = Microsoft
    Flags = Not Embedded Profile, Use anywhere
    Dev. Mnfctr. = 0x0
    Dev. Model = 0x0
    Dev. Attrbts = Reflective, Glossy
    Rndrng Intnt = Perceptual
    Illuminant = 0, 1, 0 [Lab 100, 0, -0]
    Creator = 'LOGO'
    Total volume of gamut is 885574 cubic colorspace units
    The profile I have moved to and which seems to be working is a much smaller matrix profile. iccview.de says:
    Description Tag:
    DELL U2410 Color Profile,D6500
    ICC-Tag: XYZ Matrix
    Calculation: 3x3 Matrix
    Header:
    size = 6756 bytes
    CMM = 'ADBE'
    Version = 2.0.0
    Device Class = Display
    Color Space = RGB
    Conn. Space = XYZ
    Date, Time = 1 Mar 2010, 14:15:19
    Platform = Microsoft
    Flags = Not Embedded Profile, Use anywhere
    Dev. Mnfctr. = 'DELL'
    Dev. Model = 0x534654
    Dev. Attrbts = Reflective, Glossy
    Rndrng Intnt = Perceptual
    Illuminant = 0, 1, 0 [Lab 100, 0, -0]
    Creator = 'DELL'
    Total volume of gamut is 1401609 cubic colorspace units
    So, assuming I get no more crashes, how do you want to debug this further? Do you want my icc profiles?

  • Is it possible to create a keyboard shortcut for "Export book to PDF"? (Cannot find it in the Keyboard Shortcuts window.)

    I'd like to create a keyboard shortcut for the "Export Book to PDF" command on the Books panel menu, but I simply can't find that command in Keyboard Shortcuts. After not finding it in what seemed the logical place (Keyboard Shortcuts > Product Area: Panel Menus > Book), I've looked through all the Product Areas listed on the dropdown menu -- but it seems I must be missing something.
    What do I need to do / where do I need to look to assign a keyboard shortcut for this command?

    Sorry, I agree that that is missing in action. I don't know of a workaround unless someone has written a script. Scripts can be called with keystrokes.

  • Using Lightroom 5 web module for first time  - all files are declared missing in Export/Upload (all visible/usable in Library/Development modules) - HELP

    Lightroom user for 3 years and only use internal renaming/moving of files - system is iMac OSX.

    Thanks for the responses.
    I have already installed HWMonitor when dj_page suggested it may be due to overheating yesterday.
    Tried to insert a print sceeen but file was too big.
    The CPU package is running at 62°C
    the 4 cores vary from 61,62,64,54
    I don't know if this is hot or normal.
    Once I get into Lightroom I have no way of telling what the temps are as the second I generate a 1:1 preview the computer reboots.
    All three case fans and CPU fan are running.
    Don't know what else I can check.
    The case is a mid-tower Antec with lots of space and well designed ventilation.
    Currently I'm using the Intel graphics display built into the motherboard. Have a new graphics card coming because I suspect that the added load of the video onto the CPU may be causing the issue. What do you all think?

  • SQL Developer F* keyboard shortcuts don't work on mac

    So... guessing there are not a lot of mac users of SQL Developer, but for the few of us, could someone please change all F key shortcuts to something else? F keys are natively mapped to OS functions on Mac OS X, and so are not usable out of the box.
    This means that I have to remap ~30 shortcuts if I don't want to be clicking in a new SQL Developer install.
    Also, I really hope this is the right place to put bug reports/feature requests, because there is no "support" section on the main site.

    Yeah, it's an annoyance, particularly the things mapped to F9-F12, as those are bound to Exposé and the Dashboard. I'm not sure if we would default to using no F keys, as we have a lot of keybinds and restricting the number of keys available could lead to requiring odd combinations of modifier keys. We'll take a look at it for a future release.
    - John
    SQL Developer Team

  • Lightroom KeyBoard Shortcuts Windows in PDF?

    Any one have this and where I can get a copy, having it next to you to reference is great, I have it for Adobe Bridge and Camera Raw.
    Hoping to get one for Lightroom.
    Thanks

    Review the FAQ thread in this forum. Seek and ye shall find.

  • Develop module disabled, although paying customer / OS 10.9.4

    Dear Adobe Support Team,
    I am experiencing serious problems with Lightroom 5.5. Although I am a paying member of the full Adobe CC, Lightroom 5.5 disables the Develop Module. I have tried all of the following, in all combinations and orders, without success:
    1. Logging out of Creative Cloud, restarting Mac, logging back in
    2. Uninstalling Lightroom 5.5 completely, logging out of CC, logging back in, re-installing the software
    What can be done here? I am a professional photographer and this is beginning to get a real problem as this has been the state for more than a week.
    Lightroom version: 5.5 [968504]
    Operating system: Mac OS 10
    Version: 10.9 [4]
    Application architecture: x64
    Logical processor count: 8
    Processor speed: 2,6 GHz
    Built-in memory: 16384,0 MB
    Real memory available to Lightroom: 16384,0 MB
    Real memory used by Lightroom: 342,7 MB (2,0%)
    Virtual memory used by Lightroom: 1019,9 MB
    Memory cache size: 195,8 MB
    Maximum thread count used by Camera Raw: 4
    Displays: 1) 2880x1800
    Application folder: /Applications
    Library Path: ---
    Settings Folder: /Users/USER/Library/Application Support/Adobe/Lightroom
    Installed Plugins:
    1) Behance
    2) Canon Tether Plugin
    3) Facebook
    4) Flickr
    5) Leica Tether Plugin
    6) Nikon Tether Plugin
    Config.lua flags: None

    Cyril, this forum is not part of Adobe's "support" effort, and is only manned by other users so you are not likely to get a direct reply from Adobe.
    in order to a direct reply from Adobe, you will have to contact them directly, even if you have difficulty doing so at the moment.
    $60 a month seems a lot to pay for poor support, and you have my commiserations, for what that's worth.

  • How can I make my LR4.3 to support Video in Develop module?

    Since I installed my Lightroom4 (v4.3), I am not able to edit video. The video will play in Library module, but  as soon as I switched to DEVELOP module, the middle panel greyed out and 'Video is not supported in Develop' appeared.
    Please somebody tell me how to make Lightroom to support video in develop module. Thanks in advance for any assistance.
    Johan

    Lightroom doesn't support video in Develop, and never has.  Only in Quick Develop.

Maybe you are looking for