RichardT Posted May 10, 2010 Posted May 10, 2010 I am sure this was answered before somewhere, I just can't seem to enter the correct search words to find it. I am looking to use a script to install my other program that I compiled to an .exe. The install program maps drives, copies files, and sets variables. It also uses splashtext in a couple of places. I need to hide the background functions of what the script is doing, and at the same time display the name of what I call the program. Example: When you install most programs it splashes up an image while it is doing everything in the background. That is what I am looking to do. "so much work, so little brains..."
evilertoaster Posted May 10, 2010 Posted May 10, 2010 I don't see a question mark in your...question...
UEZ Posted May 10, 2010 Posted May 10, 2010 I am sure this was answered before somewhere, I just can't seem to enter the correct search words to find it. I am looking to use a script to install my other program that I compiled to an .exe. The install program maps drives, copies files, and sets variables. It also uses splashtext in a couple of places. I need to hide the background functions of what the script is doing, and at the same time display the name of what I call the program. Example: When you install most programs it splashes up an image while it is doing everything in the background. That is what I am looking to do. Something like that? $i = 0 $pic = "c:\Program Files\AutoIt3\Examples\GUI\logo4.gif" AdlibRegister("Background_Job", 100) SplashImageOn("Splash Screen", $pic, 169, 68, -1, -1, 1) Sleep(10000) SplashOff() AdlibUnRegister("Background_Job") Exit Func Background_Job() $i += 1 ConsoleWrite($i & @CRLF) Return EndFunc BR, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
RichardT Posted May 11, 2010 Author Posted May 11, 2010 Something like that? $i = 0 $pic = "c:\Program Files\AutoIt3\Examples\GUI\logo4.gif" AdlibRegister("Background_Job", 100) SplashImageOn("Splash Screen", $pic, 169, 68, -1, -1, 1) Sleep(10000) SplashOff() AdlibUnRegister("Background_Job") Exit Func Background_Job() $i += 1 ConsoleWrite($i & @CRLF) Return EndFunc BR, UEZ "so much work, so little brains..."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now