JuergenF Posted May 22, 2004 Posted May 22, 2004 (edited) Dear all, I'm new to v3. I have a lot of Info-Boxes to be displayed for a few seconds. SplashTextOn ( 'AutoIt', 'Some sample text 1' ) Sleep (5000 ) SplashOff ( ) Is it possible to code that in one line for better reading of Script ? Best regards Juergen Edited May 22, 2004 by JuergenF
Valik Posted May 22, 2004 Posted May 22, 2004 (edited) Wrap it in a function: Func MySplash($title, $text, $n) SplashTextOn ( $title, $text ) Sleep ($n ) SplashOff ( ) EndFunc And then just call it: MySplash('AutoIt', 'Some sample text 1', 5000) Edited May 22, 2004 by Valik
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