Splash con efectos de texto y devuelve variables

y programas personales para otros como tu, puede que te corrijan ;)
Responder
Avatar de Usuario
BasicOs
Site Admin
Mensajes: 2091
Registrado: 21 Nov 2006, 19:24
Ubicación: El Internet - (Canarias, España)
Contactar:

Splash con efectos de texto y devuelve variables

Mensaje por BasicOs »

Un splash con modificación interactiva de texto (desde el programa)
Un ejemplo de ir funcionando con el script y va devolviendo interactivamente al splash:

Código: Seleccionar todo

#include <GUIConstantsEx.au3>
#include <SendMessage.au3>
#include <WindowsConstants.au3>

#include <ModernSplash.au3>
_ModernSplash_Create("Test Program","v1.0 Build 1243#rev64453","_exit",20)
_ModernSplash_Initiate("Load...")
Sleep(100)
_ModernSplash_AddText("Loading resources...")
_ModernSplash_AddText("Test Text 123 quite long... errm jup..")
_ModernSplash_AddText(Random(100000,1000000,1))
Sleep(100);do smth
_ModernSplash_AddText("Max rox!")
MsgBox(0,"","You can try to exit the Splash by clicking on the X on the right or push esc"&@CRLF&"It will close then after this messagebox dissappears")
Sleep(400);do smth
_ModernSplash_AddText(Random(100000,1000000,1))
Sleep(200);do smth
_ModernSplash_AddText("Ping Google 1...")
_ModernSplash_AddText("Returned: "&Ping("www.google.de")&"ms")
_ModernSplash_AddText("Ping Google 2...")
_ModernSplash_AddText("Returned: "&Ping("www.google.de")&"ms")
_ModernSplash_AddText("Ping Google 10 times")
$ms = 0
For $i = 1 To 10
$ms += Ping("www.google.de")
Next
_ModernSplash_AddText("Roundtrip: "&Round($ms/10)&"ms")
_ModernSplash_AddText("Mesagebox")
MsgBox(0,"","Click ok to continue or watch this beautiful animation. Hope you have enough time, its endless ;-)")
_ModernSplash_DeInitiate()
MsgBox(0,"","Programm succesfull loaded :)")
Func _exit()
    MsgBox(0,"","You abborted loading...script exit now!")
    Exit
EndFunc
Aquí: ModernSplash.au3
http://www.autoit.de/index.php?page=Att ... b92adba585
Post original GtaSpider:
http://www.autoit.de/index.php?page=Thr ... adID=20852

Salu22:)
Avatar de Usuario
Chefito
Profesional del Autoit
Mensajes: 2035
Registrado: 21 Feb 2008, 18:42
Ubicación: Albacete/Cuenca (España)

Re: Splash con efectos de texto y devuelve variables

Mensaje por Chefito »

Jejeje.....esta chulo el efecto :smt023 .

Saludos.
Cita vista en algún lugar de la red: En este mundo hay 10 tipos de personas, los que saben binario y los que no ;).
Responder