Jump to content

Hide a window


Jussip
 Share

Recommended Posts

is there way to hide a window? Like ex. run notepad, hide it, and write text there, and unhide it?

Yes. Look this:

AutoItSetOption("WinTitleMatchMode",2)
Run("notepad.exe",@SystemDir,@SW_HIDE)
WinWait("Notepad")
WinActivate("Notepad")
ControlSend("Notepad","","[CLASS:Edit;INSTANCE:1]","TEST")
WinSetState("Notepad","",@SW_SHOW)

When the words fail... music speaks.

Link to comment
Share on other sites

Yes. Look this:

AutoItSetOption("WinTitleMatchMode",2)
Run("notepad.exe",@SystemDir,@SW_HIDE)
WinWait("Notepad")
WinActivate("Notepad")
ControlSend("Notepad","","[CLASS:Edit;INSTANCE:1]","TEST")
WinSetState("Notepad","",@SW_SHOW)
Will you marry me, andreik?
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...