Hey, habe ein Problem mit einem Splashscreen.
Undzwar habe ich nach einem Splashscreen mit einem Bild Gegoogled. Habe auch eins gefunden.
Spoiler anzeigen
#NoTrayIcon
#include
$tempo=2000
$tamanhox=@DesktopWidth*0.46875
$tamanhoy=$tamanhox/2
$posicaox=(@DesktopWidth/2)-($tamanhox/2)
$posicaoy=(@DesktopHeight/2)-($tamanhoy)
splashImageOn("","splash.gif",$tamanhox,$tamanhoy,$posicaox,$posicaoy,1)
$GUI = GUICreate ("Teste", $tamanhox, $tamanhoy, $posicaox, $posicaoy,$WS_POPUP, BitOR ($WS_EX_TRANSPARENT, $WS_EX_LAYERED, $WS_EX_TOPMOST))
$label = GUICtrlCreateLabel("© dRyDen 2007", $posicaox+($tamanhox/6), $posicaoy/($tamanhoy), $tamanhox/4, $tamanhoy/4,$SS_CENTER,0)
GUICtrlSetFont(-1,15,$tamanhox/30)
WinSetTrans ($GUI, "", 50)
GUISetBkColor(0xffffff, $GUI)
GUISetState(@SW_SHOW,$GUI)
Sleep($tempo)
GUISetState(@SW_HIDE,$GUI)
Habe dazu eine passende .gif datei geladen und wollte es testen.
Bekomme doch jedesma Fehlermeldung, dass variablen $WS_POPUP, $SS_CENTER nicht vorher declaired wurden.
Weiss nicht wo der fehler ist, da ich mich damit nicht wirklich auskenne.
Kann vielleicht bitte mal wer drüberschauen?
danke