Jump to content

SplashTextOn() and color


Orca
 Share

Recommended Posts

OMG Thankyou soo much! I was able to simply modify the old functions that added text to the splash screen with the control of the GUI label and all worked well! This project just got interesting, even if it does nothing :(:(

Is there a way to set the background color and text (if it's not in the manual... haven't looked yet for the font color) of a splashscreen? I'm quite unhappy with the gray background. Compared the rest of my app it's very drab.

Edited by SiC_Goat

I AM ORCA!! A VERY POWERFUL WHALE!!!

Link to comment
Share on other sites

Is there a way to set the background color and text (if it's not in the manual... haven't looked yet for the font color) of a splashscreen? I'm quite unhappy with the gray background. Compared the rest of my app it's very drab.

<{POST_SNAPBACK}>

Perhaps create a splah with GUI functions you can have a better coloring management :(
Link to comment
Share on other sites

Yeah, but w/ the GUI there is no way to hide the toolbar titlebar at the top of the window. I need the whole @desktopwidth, @desktopheight range to be black. I did try fiddling with GUI functions but that prooved feeble and brought me no where...

I AM ORCA!! A VERY POWERFUL WHALE!!!

Link to comment
Share on other sites

Yeah, but w/ the GUI there is no way to hide the toolbar titlebar at the top of the window. I need the whole @desktopwidth, @desktopheight range to be black.  I did try fiddling with GUI functions but that prooved feeble and brought me no where...

<{POST_SNAPBACK}>

You want a black screen:

GUICreate('', @DesktopWidth, @DesktopHeight, 0, 0, 0x80880000)
GUISetBkColor(0x00000000)
GUISetState()
Sleep(5000)
Link to comment
Share on other sites

Yeah, but w/ the GUI there is no way to hide the toolbar titlebar at the top of the window. I need the whole @desktopwidth, @desktopheight range to be black.  I did try fiddling with GUI functions but that prooved feeble and brought me no where...

<{POST_SNAPBACK}>

Yes you can hide the toolbar titlebar just use the correct style at GUICreate :(

#include <GuiConstants.au3>
GuiCreate("splash",100,50,-1,-1,$WS_POPUP)
GuiSetState()
sleep(5000)
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...