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 / GUICtrlSetCursor.au3 < prev    next >
Text File  |  2005-01-07  |  208b  |  12 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("put cursor over label", 300, 100)
  4. GUICtrlCreateLabel("label",125,40)
  5. GUICtrlSetCursor(-1, 4)
  6. GUISetState ()
  7.  
  8. While GUIGetMsg()<> $GUI_EVENT_CLOSE
  9. WEnd
  10. Exit
  11.  
  12.