simple click on an app in the taskbar

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
bunam
Posts: 1
Joined: 05 Sep 2018, 07:14

simple click on an app in the taskbar

24 Sep 2018, 05:40

hello,

I'm from macOS now I'm on Windows 10 PC for working (not my choice ;p)
I'm playing around with AutoHotkey to reproduce some nice thing I missed from macOS.

I would like to reproduce one I think most important :
when you click on App on the dock the os bring all windows of this app to front.

Do you think it's possible ?

With this i can bring all Git Bash windows to front (thank's for the autor)

Code: Select all

 Here is a script that will put on top all PuTTY windows. It is activated when pressing the 
#c::
WinGet, id, list, ahk_class mintty
Loop, %id%
{
    this_id := id%A_Index%
    WinActivate, ahk_id %this_id%
}
return
So can you help me for the task bar part ?

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: No registered users and 251 guests