Page 1 of 1

Open virtual keyboard command

Posted: 28 Dec 2018 00:04
by Havoc911
Is it possible to add a command to open the virtual keyboard in the macro editor? I want to add that step onto the end of some of my macros where the text cannot be pre-determined for the text type command.

Thanks so much!


Jonathan

Re: Open virtual keyboard command

Posted: 04 Jan 2019 14:24
by DT_bettinzana
Havoc911 wrote:
28 Dec 2018 00:04
Is it possible to add a command to open the virtual keyboard in the macro editor? I want to add that step onto the end of some of my macros where the text cannot be pre-determined for the text type command.

Thanks so much!


Jonathan
Hello,
install the last beta version and use the following functions in the macro user code:

dtmacro.open_virtual_keyboard_win()
dtmacro.close_virtual_keyboard_win()
dtmacro.virtual_keyboard_win_is_open() --> Return 1 if the virtual-keyboard is open, return 0 if it is closed

Hope this helps.

Re: Open virtual keyboard command

Posted: 08 Jan 2019 02:15
by Havoc911
Works great, thanks much!