home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / GUICtrlSetCursor.au3 < prev    next >
Encoding:
Text File  |  2005-01-07  |  208 b   |  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.