This content has been marked as final.
Show 3 replies
-
1. Re: Keyboard shortcuts to select develop sliders
witkacy Sep 5, 2007 9:00 PM (in response to SimonTindemans)Excellent request. Give us the possibility to assign keyboard shortcuts to individual sliders/numerical fields (from within the all-new Keyboard Shortcuts customization dialog :-)
Regards
m. -
2. Re: Keyboard shortcuts to select develop sliders
=gmckinney= Dec 7, 2007 7:16 AM (in response to SimonTindemans)**Update: I will try and re-write this to inject the shift-up/down instead of using mouse movements **<br /><br />Here's a quick hack to do the same for Windows using www.AutoHotKey.com I would like it if LR would add exposure, fill, black, as nudge shortcuts so that I can reprogram my Logitech G15 to call the same.<br /><br />NOTE: This can go very weird if you computer speed is different to mine. If you find the mouse pointer disappears, close LR, and increase the Sleep 500 below.<br /><br /><WinKey>2 = Black Minus<br /><WinKey>3 = Black Plus<br /><WinKey>4 = Fill Minus<br /><WinKey>5 = Fill Plus<br /><WinKey>6 = Exp Minus<br /><WinKey>7 = Exp Plus<br /><br />; Code Starts <br />#IfWinActive, Lightroom<br /> #2::LRMouseMove( 10, -2) ; Black Clipping, Minus<br /> #3::LRMouseMove( 10, 2) ; Black Clipping, Plus<br /> #4::LRMouseMove( 40, -5) ; Fill, Minus<br /> #5::LRMouseMove( 40, 5) ; Fill, Plus<br /> #6::LRMouseMove(115,-10) ; Exposure, Minus<br /> #7::LRMouseMove(115, 10) ; Exposure, Plus<br /> LRMouseMove(x,dx) {<br /> MouseGetPos, xpos, ypos <br /> BlockInput, MouseMove<br /> ControlGetPos, cx, cy, w, h, AfxWnd80u82<br /> MouseMove, X+CX, CY+50, 1<br /> MouseClickDrag, L, 0, 0, DX, 0, 0, R<br /> Sleep 500<br /> MouseMove, XPOS, YPOS, 1<br /> BlockInput, MouseMoveOff<br /> Exit<br /> }<br />#IfWinActive<br />; Code Ends -
3. Re: Keyboard shortcuts to select develop sliders
=gmckinney= Dec 7, 2007 8:51 AM (in response to SimonTindemans)OK, check this new thread out http://www.adobeforums.com/webx/.3c05831d

