home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / contextmenu.au3 < prev    next >
Text File  |  2005-01-19  |  514b  |  19 lines

  1. GUICreate("GUI with simple context menu",300,200)
  2.  
  3. $trackmenu = GuiCtrlCreateContextMenu ()
  4. $aboutitem = GuiCtrlCreateMenuitem ("About",$trackmenu)
  5. ; next one creates a menu separator (line)
  6. GuiCtrlCreateMenuitem ("",$trackmenu)
  7. $exititem = GuiCtrlCreateMenuitem ("Exit",$trackmenu)
  8.  
  9. GuiSetState()
  10.  
  11. While 1
  12.     $msg = GuiGetMsg()
  13.     If $msg = $exititem Or $msg = -3 Or $msg = -1 Then ExitLoop
  14.     If $msg = $aboutitem Then Msgbox(0,"About","A simple example with a context menu!")
  15. WEnd
  16.  
  17. GUIDelete()
  18.  
  19. Exit