Page 1 of 1

Switch two applications by Send AltTab

Posted: 08 Dec 2017, 20:20
by dsewq1LYJ

Code: Select all

Send !{Tab}

Code: Select all

Send {Alt Down}
Sleep 32
Send {Tab}
Sleep 32
Send {Alt Up}

Code: Select all

SetKeyDelay,32,32
Send {Alt Down}
Sleep 32
Send {Tab}
Sleep 32
Send {Alt Up}

Code: Select all

Send {Alt Down}
Sleep 32
Send !{Tab}
Sleep 32
Send {Alt Up}
All of them is pushing the current one to the last and activate next one.
How do I simulate AltTab with Send command ?