JuergenF 0 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 Share this post Link to post Share on other sites
Valik 478 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 Share this post Link to post Share on other sites
JuergenF 0 Posted May 22, 2004 Very good idea. Thanks a lot Juergen Share this post Link to post Share on other sites