Skip to content

Instantly share code, notes, and snippets.

@zidarsk8
Created February 10, 2013 13:57
Show Gist options
  • Save zidarsk8/4749662 to your computer and use it in GitHub Desktop.
Save zidarsk8/4749662 to your computer and use it in GitHub Desktop.
#include <WindowsConstants.au3>
Global $SS_CENTER
$_GuiCountDown = GUICreate ( "CountDown...", 500, 200, @DesktopWidth/2 +200, @DesktopHeight/2 +100, $WS_EX_TOPMOST )
GUISetBkColor ( 0xCCCCCC )
$TimeLabel = GUICtrlCreateLabel ( "", 35, 0, 400, 180, $SS_CENTER )
GUICtrlSetFont ( -1, 20, 500 )
$CountLabel = GUICtrlCreateLabel ( "", 35, 30, 480, 180, $SS_CENTER )
GUICtrlSetFont ( -1, 20, 500 )
$NextLabel = GUICtrlCreateLabel ( $nextWord, 35, 60, 480, 180, $SS_CENTER )
GUICtrlSetFont ( -1, 15, 500 )
GUISetState ( )
WinSetOnTop ( $_GuiCountDown, "", 1 )
GUICtrlSetData ( $TimeLabel, "label1" )
GUICtrlSetData ( $CountLabel, "label2")
GUICtrlSetData ( $nextLabel, "label2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment