I am in desktop mode and I need to test Redo/Undo – is there anyway to test ctrl-Z/ctrl-Y?
thanks.
Here the solution ti switch
Thanks, but I’m not asking how to switch to desktop mode, I am asking how to test undo redo, like ctrlZ and ctrlY
here the command to switch
XDesktopAutomation | true
XDesktopAutomation | false
Inside the macro code to switch.
…and then use XType for your CTRL+Z and CTRL+Y
You must have focus on software you use, my suggestion is open it before run a command.
This is the macro code to execute your commands
{
"Command": "XDesktopAutomation",
"Target": "true",
"Value": ""
},
{
"Command": "XType",
"Target": "${KEY_CTRL+KEY_Z}",
"Value": ""
},
{
"Command": "XType",
"Target": "${KEY_CTRL+KEY_Y}",
"Value": ""
},
{
"Command": "XDesktopAutomation",
"Target": "false",
"Value": ""
},
If you have not focus on software/page where you want to use it do not work.
thanks I will give it a try and let you know