Wb-FreeKill 0 Posted September 17, 2004 Ive been working wih some script files, for eksample, af script that allows you to input a password, but if its wrong, the script will continue... My question is - Can i in some way make the screen black out for a while? and maybe write text in the black screen.. Other question - If i want to intigrate another file, for ekample an .exe ore .mp3 file, så it will be compiled as one file. Can that be done, ore? Thx from Wb-FreeKill Share this post Link to post Share on other sites
Westi 0 Posted September 17, 2004 Try this: The ultimate help for AutoIT Share this post Link to post Share on other sites
ZeDMIN 0 Posted September 17, 2004 Hiya, always try searching the helpfile. FileInstall -------------------------------------------------------------------------------- Include and install a file with the compiled script. FileInstall ( "source", "dest" [,flag]) Gray Screen: SplashTextOn("Title", "", @DesktopWidth, @DesktopHeight, -1, -1, 1) Sleep(3000) SplashOff() Greetings, ZeD Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted September 17, 2004 Hiya, always try searching the helpfile. Gray Screen: SplashTextOn("Title", "", @DesktopWidth, @DesktopHeight, -1, -1, 1) Sleep(3000) SplashOff() Greetings, ZeD <{POST_SNAPBACK}>Can i get the splashscreen in black insted of gray? Share this post Link to post Share on other sites
ZeDMIN 0 Posted September 17, 2004 mmhh ... not with SplashTextOn. But you can try using SplashImageOn showing a black image. Greetings, ZeD Share this post Link to post Share on other sites
Wb-FreeKill 0 Posted September 17, 2004 mmhh ... not with SplashTextOn. But you can try using SplashImageOn showing a black image. Greetings, ZeD <{POST_SNAPBACK}>ah, good idea ill try that, thx Share this post Link to post Share on other sites
emmanuel 0 Posted September 17, 2004 Try this: The ultimate help for AutoIT <{POST_SNAPBACK}>whatever this was, the link's dead... "I'm not even supposed to be here today!" -Dante (Hicks) Share this post Link to post Share on other sites
SlimShady 1 Posted September 17, 2004 I think he meant this:http://www.autoitscript.com/autoit3/docs/ Share this post Link to post Share on other sites
emmanuel 0 Posted September 17, 2004 I think he meant this: http://www.autoitscript.com/autoit3/docs/ <{POST_SNAPBACK}>ah... I was hoping for some new wild autoit help source, something crazily awesome "I'm not even supposed to be here today!" -Dante (Hicks) Share this post Link to post Share on other sites
the_lord_mephy 0 Posted September 17, 2004 lol me2, *sigh* My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote] Share this post Link to post Share on other sites
emmanuel 0 Posted September 17, 2004 lol me2, *sigh* <{POST_SNAPBACK}>well, you know, not that the helpfile isn't wildly exciting, but one must always look for something new and crazily awesome. "I'm not even supposed to be here today!" -Dante (Hicks) Share this post Link to post Share on other sites
Guest BlackDiablo110 Posted September 17, 2004 I, at first, thought the helpfile sucked, but then I actually read it Oo. It is actually EXTREMLY good and useful, and the only source on learning AutoIt =) Share this post Link to post Share on other sites
the_lord_mephy 0 Posted September 17, 2004 Yeah but 2 helpfiles is better than one =-o My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote] Share this post Link to post Share on other sites
CyberSlug 6 Posted September 18, 2004 Why not use the password char parameter of InputBox? $passwd = InputBox("Security Check", "Enter your password.", "", "*") Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites
the_lord_mephy 0 Posted September 18, 2004 the problems already solved isnt it? $password = InputBox("Enter Password", "Enter Password Below", "", "*") If $password = the right password Then Statements EndIf My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote] Share this post Link to post Share on other sites