SUB0DH 0 Posted November 18, 2010 Is it possible to hide window of other application with autoit by just specifying the name of the executable of the application And showing the window only when specified hotkey is pressed? By searching this forum I found a way for hiding the system tray icon only. Any help is greatly appreciated. Share this post Link to post Share on other sites
PsaltyDS 39 Posted November 18, 2010 There is not a one-to-one relationship between process and window, because a single process can have none or many windows. What you could do is WinList() then walk the array testing each window handle with WinGetProcess() to see if it matches the one you are interested in, then WinSetState(). Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites