Jump to content

Recommended Posts

Posted

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.

Posted

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 window

Look at WinSetState () in the help file.

qq

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...