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 / GUICtrlSetPos.au3 < prev    next >
Text File  |  2004-12-04  |  576b  |  26 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI position")  ; will create a dialog box that when displayed is centered
  4.  
  5. $right = 0
  6. $label=GUICtrlCreateLabel ( "my moving label", 10,20)
  7.                 
  8. $button = GUICtrlCreateButton ("Click to close", 50,50)
  9. GUICtrlSetState(-1,$GUI_FOCUS)                ; the focus is on this button
  10.  
  11. GUISetState ()
  12.  
  13. While 1
  14.     $msg = GUIGetMsg()
  15.  
  16.     if $msg = $button Or $msg = $GUI_EVENT_CLOSE then Exit
  17.     If $right = 0 then
  18.         $right = 1
  19.         GUICtrlSetPos ($label, 20,20)
  20.     else
  21.         $right = 0
  22.         GUICtrlSetPos ($label, 10,20)
  23.     endif
  24.     Sleep(100)
  25. Wend
  26.