T0th Posted January 27, 2006 Posted January 27, 2006 Hello! I'm pretty new to autoIT and programming... "Hello world " I've tried to write small simple scripts which include some textboxes and inputboxes. Nothing big after all. But i need some advice, how to make my script run every time windows starts. Making a textbox run every time windows starts that says:" Welcome <my name>, The date is <date>" for instance. Thanks! -T0th
SlimJim Posted January 27, 2006 Posted January 27, 2006 You could put the script into your startup folder in the start menu
BigDod Posted January 27, 2006 Posted January 27, 2006 Here is an example script to put in startup folder after it has been compiled. SplashTextOn("Welcome Message", "Welcome " & @UserName & @CRLF & "Today is " & @MDAY & "/" & @MON & "/" & @YEAR, -1, -1, -1, -1, 4, "", 24) Sleep(3000) SplashOff() Be careful of the wrapped command line. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
T0th Posted January 27, 2006 Author Posted January 27, 2006 BigDod said: Here is an example script to put in startup folder after it has been compiled. SplashTextOn("Welcome Message", "Welcome " & @UserName & @CRLF & "Today is " & @MDAY & "/" & @MON & "/" & @YEAR, -1, -1, -1, -1, 4, "", 24) Sleep(3000) SplashOff() Be careful of the wrapped command line.
T0th Posted January 27, 2006 Author Posted January 27, 2006 Thanks alot! (i think either me or my browser are kinda retarded right now, but anyway thanks again )
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