PPowerHouseK Posted December 18, 2010 Posted December 18, 2010 Hello I am very new at autoit and have spend the last two days trying to familiarize myself with it. I have been reading the tutorial it came with like it's a bible. However I can't seem to find out how to make a simple button close the GUI. Perhaps a knowing individual can help me out faster than it would take me to rummage through the help documentation. Here is what I have now: #include <GUIConstantsEx.au3> #include <GuiButton.au3> #include <WindowsConstants.au3> ;Begin my nonsense GUICreate("test") $button2 = GUICtrlCreateButton ( "Cancel", 355, 370, -1) GUISetState () While 1 $msg = GUIGetMsg() ; this checks for a message/input from the GUI. If $msg = $GUI_EVENT_CLOSE Then ExitLoop ; this states, on an exit event, exit the loop. If $button2 = $GUI_EVENT_CLOSE Then Exitloop Wend This doesn't work, mostly because I don't quite understand the syntax fully. I would greatly appreciate some help on this.
KaFu Posted December 18, 2010 Posted December 18, 2010 Close , test if the message is button2: #include <GUIConstantsEx.au3> #include <GuiButton.au3> #include <WindowsConstants.au3> ;Begin my nonsense GUICreate("test") $button2 = GUICtrlCreateButton("Cancel", 355, 370, -1) GUISetState() While 1 $msg = GUIGetMsg() ; this checks for a message/input from the GUI. If $msg = $GUI_EVENT_CLOSE Then ExitLoop ; this states, on an exit event, exit the loop. If $msg = $button2 Then ExitLoop WEnd OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2025-May-18) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16)
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