Jump to content

Recommended Posts

Posted

As you know autoit, is not a console application. It had a hidden main window (conatining a form and an Edit control +MIE). My question is: how we can get the main window ? I mean is there a variable like @autoitWinHandle ?

here is the hidden autoit main window

post-16143-1190499677_thumb.jpg

Posted

Here :)

WinSetState("AutoIt v3","",@SW_SHOW)
While 1
    Sleep(100)
WEnd

Easier than I thought.

and what if you have more than one script runing :) ?
  • Moderators
Posted

and what if you have more than one script runing :) ?

#include <array.au3>
Opt("WinTitleMatchMode", 4)
Global $aAutoItWins = WinList('classname=AutoIt v3')
_ArrayDisplay($aAutoItWins)

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

  • Moderators
Posted

And what's this window for, exactly?

From the stub exe that is used to interpret your script.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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...