Adamstuff Posted June 9, 2005 Posted June 9, 2005 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...
Groumphy Posted June 9, 2005 Posted June 9, 2005 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]
Adamstuff Posted June 9, 2005 Author Posted June 9, 2005 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...
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