APRES Posted October 14, 2005 Posted October 14, 2005 What is the best way to set event when an image has been clecked? Thank you.
Zedna Posted October 14, 2005 Posted October 14, 2005 #include <GUIConstants.au3> GUICreate("Picture click", 400,280) $pic = GUICtrlCreatePic ('image.jpg',0,0,300,150) GUISetState () While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE Exit Case $msg = $pic MsgBox(0, "", "picture clicked" ) EndSelect WEnd This is from Helpfile: example for function GUIGetMsg() Resources UDF ResourcesEx UDF AutoIt Forum Search
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