Page 1 of 1

Suggest me a quick way to toggle between....

Posted: Aug 28th, ’19, 06:53
by Admirer
Suggest me a quick way to toggle between two open windows (programmes) using Fastkeys! :roll:

Re: Suggest me a quick way to toggle between....

Posted: Aug 28th, ’19, 08:19
by Marko

Code: Select all

if not WinActive("App1")
	WinActivate App1
else if not WinActive("App2")
	WinActivate App2

Re: Suggest me a quick way to toggle between....

Posted: Aug 29th, ’19, 02:04
by Admirer
:D please explain me a little about this code!
Which key i have to use to toggle between two programs? Windows key?
I wish it should work to toggle the top 2 programs out of many which are open.
Thanks.

Re: Suggest me a quick way to toggle between....

Posted: Sep 3rd, ’19, 23:34
by Steve Clark
If you're using a windows machine...

Try holding down the ALT key and press TAB to cycle through open windows (Programs) :D

Steve