barraroo Posted February 4, 2020 Posted February 4, 2020 I am a newbie to autoit and trying to get the mouseclick function to automatically press a button as part of an install process. After trying and failing to use ControlClick and MouseClick with a co-ords specified. I tried to simplify the code as far as possible however it is still not working. What am I doing wrong here? ShellExecute("npp.7.8.1.Installer.x64.exe") WinWaitActive("Installer Language") sleep(3000) MouseClick("left")
Musashi Posted February 4, 2020 Posted February 4, 2020 Notepad++ offers an installation using commandline parameters. Have a look at the help for Run or RunWait. The command string reads : Run("npp.7.8.1.Installer.x64.exe /S", "", @SW_HIDE) /S means silent. With /D= you can specify an alternative target directory (if desired). You probably have to put #RequireAdmin at the beginning of the script. barraroo and FrancescoDiMuro 2 "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."
Bert Posted February 4, 2020 Posted February 4, 2020 look at controlclick. It will allow you to interact with a control even when the window does not have focus. As Misashi suggest - use command line. Look here for more information: http://www.get-itsolutions.com/notepad-silent-install-exe-msi-version/ barraroo 1 The Vollatran project My blog: http://www.vollysinterestingshit.com/
Zedna Posted February 4, 2020 Posted February 4, 2020 You should use ControlClick() with ClassNameNN parameter instead of X,Y coordinates in such case. barraroo 1 Resources UDF ResourcesEx UDF AutoIt Forum Search
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