我有这么个东西。送你
声明不是我的原创 是论坛一XD得。我收藏的#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("会移动的字----温州市 天帅书生 QQ:281599249", 586, 79, 193, 115)
$Group1 = GUICtrlCreateGroup("会移动的字", -2, 8, 590, 57)
$Label1 = GUICtrlCreateLabel("会移动的字", 580, 32, 572, 17,$SS_CENTERIMAGE)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$b = 1
While 1
if $b = 635 Then $b = 1
sleep (10)
ControlMove ("会移动的字","", $Label1, 580-$b, 32, 572, 17)
$b +=1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
|