keyboard-shortcutsnaturallyspeaking

Is there any shortcut to I select the entire text in Dragon NaturallySpeaking's Advanced Scripting editor?


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?

enter image description here

I use Dragon NaturallySpeaking 12.5 Professional on Windows 7 x64 SP1.


Solution

  • 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