mary 0 Posted September 22, 2007 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 Share this post Link to post Share on other sites
Nahuel 1 Posted September 22, 2007 Damn, I got that by accident once! I'll see if I can get it again Share this post Link to post Share on other sites
NELyon 2 Posted September 22, 2007 AutoitWinGetTitle() Share this post Link to post Share on other sites
Nahuel 1 Posted September 22, 2007 Here WinSetState("AutoIt v3","",@SW_SHOW) While 1 Sleep(100) WEnd Easier than I thought. Share this post Link to post Share on other sites
mary 0 Posted September 22, 2007 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 ? Share this post Link to post Share on other sites
SmOke_N 211 Posted September 22, 2007 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. Share this post Link to post Share on other sites
Nahuel 1 Posted September 22, 2007 And what's this window for, exactly? Share this post Link to post Share on other sites
SmOke_N 211 Posted September 22, 2007 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. Share this post Link to post Share on other sites