#include #include "_SplashTextEx.au3" _GDIPlus_Startup() Global Const $iW = 1000, $iH = 200 ;create default splash screen for comparison SplashTextOn("", "Please wait while coordinates are created", $iW, $iH, -1, (@DesktopHeight - $iH) / 2 - $iH - 30, BitOR($DLG_NOTITLE, $DLG_MOVEABLE, $DLG_TEXTVCENTER), "Impact", 50 * 0.785) #Region example 1 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xFF000000, 0xFF000000, False, 0xF0ABCDEF, False, 3, False, False, 10, 10, False) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 2 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xFF000000, 0xFFFFFF40, False, 0xF0ABCDEF, False, 3, False, False, 10, 10, False, -1, 1, 1, 0x90202020, 0.175, $WS_BORDER, 0xF8, True, 0, True, 1000, 500, 3, 0xF8F8F8, 0xFF000000, 2) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 3 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xFF000000, 0xFF000000, False, 0xF0ABCDEF, False, 3, False, False, 10, 10, True, -1) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 4 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xF040F040, 0xFFF0F0C0, True, 0xF0ABCDEF, False, 3, False, False, 10, 10, True, -3) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 5 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xF040F040, 0xFFF0F0C0, True, 0xF0ABCDEF, False, 3, False, True, 10, 10, True, -2) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 6 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xF040F040, 0xFFF0F0C0, True, 0xF0ABCDEF, True, 3, False, True, 10, 10, True, -3) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion #Region example 7 Global $hSplash = _SplashTextEx("Please wait while coordinates are created", 50, $iW, $iH, "Impact", $iW, $iH, 0xF040F040, 0xFFF0F0C0, True, 0xF0ABCDEF, True, Random(0, 1, 1), True, True, 10, 10, True, -2) Do Switch GUIGetMsg() Case $GUI_EVENT_CLOSE _SplashTextCloseEx($hSplash) ExitLoop EndSwitch Until False #EndRegion SplashOff() _GDIPlus_Shutdown()