Jump to content

Multiple Commands In One Line ?


Recommended Posts

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 by JuergenF
Link to comment
Share on other sites

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 by Valik
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...