Jump to content

Button click, need help


Recommended Posts

This changes the text to on or off on each click. If you want stuff to run just add it in the "if then else" part

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>



#Region ### START Koda GUI section ### Form=f:\cabal.kxf
$Practice = GUICreate("Practice", 278, 848, 0, 7, $GUI_DOCKSIZE)
GUISetBkColor(0x000000)
WinSetTrans($Practice, "", 190)
$Exit = GUICtrlCreateButton("Exit", 188, 8, 75, 25)
$On = GUICtrlCreateButton("On", 8, 8, 75, 25)
GUICtrlSetBkColor($On, 0xffff00)
GUICtrlCreateInput("", 82, 10, 30, 21)
$Enter = GUICtrlCreateButton("Enter", 8, 70, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###




While 1
    $nMsg = GUIGetMsg()

    Switch $nMsg
        Case $Exit
            Exit
        Case $On
            If GUICtrlRead($On) = 'On' Then
                GUICtrlSetData($On, 'Off')
            Else
                GUICtrlSetData($On, 'On')
            EndIf
    EndSwitch
WEnd

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...