Jump to content

SplashTextOn


Recommended Posts

Is there any way to easily add spaces, carriage returns, etc to SplashTextOn? I saw a very fancy UDF in the other forum, but that's longer than my code! I was thinking that {SPACE} and the like would work, but I haven't been able to do that yet. Forgive me if this is very simple, so am I, and I may have missed it.

TIA.

Heisenberg was probably right...

Link to comment
Share on other sites

Tries to declare that in variable ?

Dim $iBlank = " "; Or other caracter
Dim $iEnter = @CR
Dim $iLine1 = "My first line"
Dim $iLine2 = "My second line"

SplashTextOn("My Splash", $iLine1 & $iEnter & $iBlank & $iLine2, -1, -1, -1, -1)
    WinActivate("My Splash")
    Sleep(5000)
    SplashOff()

???

----------------------GroumphyMore information about me [Fr]

Link to comment
Share on other sites

Tries to declare that in variable ?

Dim $iBlank = " "; Or other caracter
Dim $iEnter = @CR
Dim $iLine1 = "My first line"
Dim $iLine2 = "My second line"

SplashTextOn("My Splash", $iLine1 & $iEnter & $iBlank & $iLine2, -1, -1, -1, -1)
    WinActivate("My Splash")
    Sleep(5000)
    SplashOff()

<{POST_SNAPBACK}>

Now that is definitely interestng. I'll give a try. Thanks

Heisenberg was probably right...

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...