Page 1 of 1

Perform ALT+TAB to switch active program on a remote computer

Posted: Wed Oct 20, 2021 11:22 pm
by Jubis_1963
Hello everybody

I need help to perform an ALT+TAB command on a remote computer, The ALT key would the to be pressed and a 2nd button would perform the switch until the TAB key is OFF.

I've been trying and I managed to get the alt+tab done but I can't just perform the tab to switch the app.

The ALT down is done this way
Untitled.png
Untitled.png (33.97 KiB) Viewed 22144 times
And the

TAB is done like this:

Thanks
Untitled 2.png
Untitled 2.png (33.2 KiB) Viewed 22144 times
Is it possible?

Re: Perform ALT+TAB to switch active program on a remote computer

Posted: Sat Oct 23, 2021 9:30 am
by Vincent Burel
you may use
System.KeyDown("ALT+TAB"); instead no ?
and of course
System.KeyUp("ALT+TAB"); in button OFF script

Re: Perform ALT+TAB to switch active program on a remote computer

Posted: Sat Oct 23, 2021 11:20 pm
by Jubis_1963
I tried, ALT+TAB open the ALT+TAB windows app switch but then I need to press another tab to switch the selected App, the problem is that second tab.

I do System.KeyDown("ALT+TAB"); in a 2 positions button type to open the ALT TAB menu but how do I manage to do the TAB to switch the app?

I tried programming another button with either System.KeyDown("TAB"); or System.KeyPress("TAB"); but neither works!