c# - SendKeys to Lightroom 5 is not working properly -
i'm developing little tool shooting review in lightroom of photographic shooting sessions 360 controller.
i'm using sendkeys method simulate key input , windowsinputsimulator (http://inputsimulator.codeplex.com/)
i got issue shift+arrow shortcut add or remove photo current selection. arrow key working look's shift modifier isn't. i've tried following code :
sendkeys.sendwait("+{right}"); inputsimulator.simulatemodifiedkeystroke(virtualkeycode.shift, virtualkeycode.right) inputsimulator.simulatekeydown(virtualkeycode.shift); inputsimulator.simulatekeypress(virtualkeycode.right); inputsimulator.simulatekeyup(virtualkeycode.shift);
i've lost few hours on :'( have ideas ?
Comments
Post a Comment