purpleblue Posted June 1, 2005 Posted June 1, 2005 Is there any way to minimize one window in AutoIt v3? Its a function in v2 and I didn't see it in the APIs of v3...why did it get scraped? Anyone else know how to minimize a single window and not all of them? Thanks in advanced.
buzz44 Posted June 1, 2005 Posted June 1, 2005 WinSetState ( "title", "text", flag ) Eg. WinSetState("Untitled -", "", @SW_HIDE) @SW_HIDE = Hide window @SW_SHOW = Shows a previously hidden window @SW_MINIMIZE = Minimize window @SW_MAXIMIZE = Maximize window @SW_RESTORE = Undoes a window minimization or maximization @SW_DISABLE = Disables the window @SW_ENABLE = Enables the windowLook at WinSetState () in the help file. qq
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now