Hello there ... my current project has me a little stumped. I'd like to take an action if someone right-clicks on a button. I am polling for button clicks currently with the following function:
Func CheckEvents()
; check for button click
$nMsg = GUIGetMsg()
Select
Case $nMsg = $GUI_EVENT_CLOSE
Exit
Case $nMsg = $btnOne
Return "btnOne"
Case $nMsg = $btnTwo
Return "btnTwo"
Case $nMsg = $btnThree
Return "btnThree"
Case $nMsg = $btnFour
Return "btnFour"
EndSelect
R