Reputation: 83167
I would like to select the the entire text in Dragon's Advanced Scripting editor. Ctrl + A doesn't work. Is there any shortcut to do it?
I use Dragon NaturallySpeaking 12.5 Professional on Windows 7 x64 SP1.
Upvotes: 1
Views: 204
Reputation: 263
Franck, your approach is somewhat cumbersome. Here is a shorter solution that does all you want with two simple shortcuts.
Sub Main
' generalized solution for selecting the entire contents of a text or text box when Ctrl-A does not work
SendKeys "^{home}", True 'to go to the beginning of the document, press Ctrl-Home
SendKeys "^+{end}", True 'to select everything, press Ctrl-Shift-End
End Sub
Upvotes: 1
Reputation: 1
Ctrl+Home/End goes to the Start/End of document. Using the hotkeys go to the start first, then hold down shift, then go to the end.
See https://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts for more hotkeys you might find useful and never knew about.
Upvotes: -1
Reputation: 83167
I haven't found any such shortcut. I simply hold Page UP for a while to place the mouse cursor at the beginning of the box, then hold SHIFT + Page DOWN till it reaches the end.
Upvotes: 0