Heather Posted October 21, 2021 Posted October 21, 2021 (edited) Hello everyone, in my script in order to install an application, among the steps there's a box has to be checked wilhe the rest are unchecked, here's my code: WinWaitActive("SAP Front End Installer") ControlSend("SAP Front End Installer", "", "[CLASS:#32770; TEXT:Analysis plugin; INSTANCE:1]", "Check", "") PS: the box to check is "Analysis plugin" which is under "Analysis for microsoft office" can anyone help. Edited October 21, 2021 by Heather
Zedna Posted October 21, 2021 Posted October 21, 2021 Post info from Au3Info tool about ClassnameNN of you target control. If it's standard Windows Treeview (SysTreeView32) then it's quite simple to set checkboxes inside it ... Resources UDF ResourcesEx UDF AutoIt Forum Search
ad777 Posted December 6, 2021 Posted December 6, 2021 On 10/21/2021 at 11:01 AM, Heather said: Hello everyone, in my script in order to install an application, among the steps there's a box has to be checked wilhe the rest are unchecked, here's my code: WinWaitActive("SAP Front End Installer") ControlSend("SAP Front End Installer", "", "[CLASS:#32770; TEXT:Analysis plugin; INSTANCE:1]", "Check", "") PS: the box to check is "Analysis plugin" which is under "Analysis for microsoft office" can anyone help. Try:ControlFocus iam ِAutoit programmer. best thing in life is to use your Brain to Achieve everything you want.
ad777 Posted December 18, 2021 Posted December 18, 2021 (edited) try this first: ControlSend("SAP Front End Installer", "Analysis plugin", "[CLASS:#32770;INSTANCE:1]", "Check") if not work try it with class:(class of window) ControlSend("[CLASS:type class here]", "Analysis plugin", "[CLASS:#32770;INSTANCE:1]", "Check") Edited December 18, 2021 by ad777 iam ِAutoit programmer. best thing in life is to use your Brain to Achieve everything you want.
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