kjuenke 0 Posted May 27, 2004 I have an application that has a check box which is a toggle. Each time it is clicked, it changes state. My problem is I don't know what state it will be in when the application opens and I need to make sure it is checked. Can I do that with AutoIt v3? Here is the part of my script that deals with the check box.... ControlClick ("VISUAL MRP - Material Requirements Planning", "Log MRP", "Centura:GPCheck4") Thanks, Ken Share this post Link to post Share on other sites
Jos 2,172 Posted May 27, 2004 you could : ControlSend ( "title", "text", "classnameNN", "{NUMPADADD}") or ControlCommand ( "title", "text", "classnameNN", "Check", "") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Share this post Link to post Share on other sites
kjuenke 0 Posted May 28, 2004 you could :ControlSend ( "title", "text", "classnameNN", "{NUMPADADD}")or ControlCommand ( "title", "text", "classnameNN", "Check", "")That worked. Thanks !!Ken Share this post Link to post Share on other sites