本帖最后由 南一 于 2010-4-10 23:21 编辑
给你一份黑屏肃静的代码,字体不停的变色的。
现在不锁鼠标和键盘了,ESC退出#NoTrayIcon
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
HotKeySet("{ESC}", "quit")
Opt("GUICloseOnESC", 0)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("System Net server", @DesktopWidth, @DesktopHeight, 0, 0, BitOR($WS_CHILD, $WS_POPUP), $WS_EX_TOPMOST)
GUISetBkColor(0x000000)
$Label1 = GUICtrlCreateLabel("黑屏肃静", @DesktopWidth / 2 - 110, @DesktopHeight / 2 - 20, 500, 500)
GUICtrlSetColor($Label1, 0xf7f957)
GUICtrlSetFont($Label1, "50", "200")
GUICtrlSetBkColor($Label1, 0x000000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
AdlibEnable("color", 500)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func color()
$random = Random(1, 10, 1)
Select
Case $random = 1
GUICtrlSetColor($Label1, 0xf91f19)
Case $random = 2
GUICtrlSetColor($Label1, 0x4bf907)
Case $random = 3
GUICtrlSetColor($Label1, 0x07cef9)
Case $random = 4
GUICtrlSetColor($Label1, 0x0d07f9)
Case $random = 5
GUICtrlSetColor($Label1, 0xf907e5)
Case $random = 6
GUICtrlSetColor($Label1, 0xfc7d0c)
Case $random = 7
GUICtrlSetColor($Label1, 0xaefe02)
Case $random = 8
GUICtrlSetColor($Label1, 0xfe0296)
Case $random = 9
GUICtrlSetColor($Label1, 0xb402fe)
Case $random = 10
GUICtrlSetColor($Label1, 0x02fbfe)
EndSelect
EndFunc ;==>color
Func quit()
Exit
EndFunc ;==>quit
|