How to resize a window automatically?

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
usser
Posts: 144
Joined: 22 Oct 2014, 13:03

How to resize a window automatically?

Post by usser » 01 Apr 2023, 13:32

Hello

Is it possible to resize the Whatsapp desktop application window that displays during a call?

Thank you.

User avatar
mikeyww
Posts: 26939
Joined: 09 Sep 2014, 18:38

Re: How to resize a window automatically?

Post by mikeyww » 01 Apr 2023, 13:41

Code: Select all

#Requires AutoHotkey v2.0
Loop {
 WinWait 'WhatsApp ahk_class ApplicationFrameWindow ahk_exe ApplicationFrameHost.exe'
 WinMove ,, 200, 300
 SoundBeep 1500
 WinWaitClose
 SoundBeep 1000
}

Post Reply

Return to “Ask for Help (v2)”