List of windows in taskbar order?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
Stinkfoot9
Posts: 51
Joined: 29 May 2022, 12:17

List of windows in taskbar order?

Post by Stinkfoot9 » 24 Sep 2022, 20:38

Is there a way to get a list of windows as they appear in the taskbar L-R , I have this but it does not seem show them in taskbar L-R order.

Any help appreciated thank you.

Code: Select all

WinGet windows, List
Loop %windows%
{
	id := windows%A_Index%
	WinGetTitle wt, ahk_id %id%
	r .= wt . "`n"
}
MsgBox %r%


Post Reply

Return to “Ask for Help (v1)”