brianr-is Posted November 29, 2010 Report Share Posted November 29, 2010 Hello, I tried incorporating the following keystroke combination (Shift + Control) into a macro and the macro is halted and doesn't seem to recognize that keystroke combination. Should this be happening? Brian. Quote Link to comment Share on other sites More sharing options...
monpasdg Posted November 29, 2010 Report Share Posted November 29, 2010 Hello, I tried incorporating the following keystroke combination (Shift + Control) into a macro and the macro is halted and doesn't seem to recognize that keystroke combination. Should this be happening? Brian. The application you're running it in might have something to do with it. Does this control + shift work else where? If so, you might be forced to use a different combination due to the application blocking it Quote Link to comment Share on other sites More sharing options...
brianr-is Posted November 29, 2010 Author Report Share Posted November 29, 2010 This keystroke combination is used in our application to highlight several records and that is what I am trying to do. It works fine in the application but, not in the macro. Brian. Quote Link to comment Share on other sites More sharing options...
acantor Posted November 29, 2010 Report Share Posted November 29, 2010 The most likely reason I can think of is that you specified a capital letter where you need lower case. Let's say the hotkey is Ctrl + Shift + T. Instead of this: <CONTROL><SHIFT>T Try this: <CONTROL><SHIFT>t Quote Link to comment Share on other sites More sharing options...
monpasdg Posted November 29, 2010 Report Share Posted November 29, 2010 This is a great idea Alan. To also expand on this, you could try Control down and shift down <CTRLD><SHIFTD>T<CTRLU><SHIFTU> In my experience sometimes an interface doesn't register some actions very quickly. Quote Link to comment Share on other sites More sharing options...
brianr-is Posted November 30, 2010 Author Report Share Posted November 30, 2010 There is no additional letter in the keystroke combination. It is strictly holding down the Shift + Right Control keys to highlight all records. I should have specified right control key. Brian. Quote Link to comment Share on other sites More sharing options...
brianr-is Posted November 30, 2010 Author Report Share Posted November 30, 2010 I found a workaround in the application for this topic. There is a select all icon in the NUI version of the application that can be clicked on to highlight all of the records. Thanks anyway. Problem resolved. Quote Link to comment Share on other sites More sharing options...
acantor Posted December 1, 2010 Report Share Posted December 1, 2010 Using <RCTRL><SHIFT>character could give you in a more reliable script than one that clicks on an icon. It's not like mouse manipulation macros cannot be made reliable; but it is harder! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.