Jump to content

Event on click on image


APRES
 Share

Recommended Posts

#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()

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...