Jump to content

Recommended Posts

Posted

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)
Posted

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?

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
  • Recently Browsing   0 members

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