cotax Posted May 3, 2010 Posted May 3, 2010 Hi, I want to make an auto installer for Setpoint 6.00.84 - the first page is easy (and ready) - the second page is the installing part (with progressbar) - the third page is a simple page where i need to click a button to finish My problem: I cant let the script wait till the instal is done and the 3th page is up. setpoint 6.00.84 only have 1 window name "SetPoint™-setup" and no sub window names (atleast the things i tried) "WindowInfo" seeing the window as 1 window, at the "control page" it called them "Internet Explorer_Server1" , "Internet Explorer_Server2" , "Internet Explorer_Server3" but i cant use it to let the window wait till "Internet Explorer_Server3" (page 3) Is there someone here who can help me out with this? The little script: Run("setpoint.exe") ;page 1 welcome etc press instal button WinWaitActive("SetPoint™-setup", "") ControlClick("SetPoint™-setup", "", "Internet Explorer_Server1", "left", "1" , "606", "488") ;page 3, the page after the progressbar, cant get this part to work WinWaitActive("SetPoint™-setup", "") ControlClick("SetPoint™-setup", "", "Internet Explorer_Server3", "left", "1" , "232", "311") ControlClick("SetPoint™-setup", "", "Internet Explorer_Server3", "left", "1" , "606", "488")
cotax Posted May 4, 2010 Author Posted May 4, 2010 (edited) ;BumpIf there is someone who knows how it works, please let me know.to show u how far i am with my installersAs u see, an installation without my G5 Mouse drivers is a bad one ^^So if u know how to get it done, then please let me know.Thanks Alot. Edited May 4, 2010 by cotax
PsaltyDS Posted May 4, 2010 Posted May 4, 2010 Those are embedded instances of Internet Explorer. You should get the object reference with _IEAttach(), using the "embedded" option. Then treat it as a web page with the other _IE* functions. See help file. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now