Search found 2 matches

by Moniri
Dec 20th, ’20, 23:25
Forum: General Discussion
Topic: Open/Close the current programm with one key
Replies: 2
Views: 2258

Re: Open/Close the current programm with one key

Try this (Type: Command): PName:="ahk_exe WINWORD.EXE" ;find the process name using Window Information Tool if(WinExist(PName)) if(WinActive(PName)) WinMinimize, %PName% else WinActivate, %PName% else run, winword ;full path to the program return Super, everything works! Thank you!
by Moniri
Dec 19th, ’20, 22:36
Forum: General Discussion
Topic: Open/Close the current programm with one key
Replies: 2
Views: 2258

Open/Close the current programm with one key

Hello! Please help me, I can't find the solution to my problem. How to make Open/Collapse the window of a certain application (e.g. Microsoft Word) with one hotkey. Thank you very much!