Jump to content

How to change background under RunOnceEx window


Recommended Posts

Hi all,

I am wondering if there is a way to change the background color under the runonceex window... the default is blue, however i would ideally like to add a wallpaper here - can anyone tell me how to do this?

Any help would be appreciate...

Link to comment
Share on other sites


I added a wallpaper using a regtweaks file called by cmdlines.txt. The entry is this:

;Set the default wallpaper

[HKEY_CURRENT_USER\Control Panel\Desktop]

"Wallpaper"="C:\\Windows\\web\\wallpaper\\crystal.jpg"

"WallpaperStyle"="2"

"TileWallpaper"="0"

Modify it to use whatever wallpaper you wish. :)

Link to comment
Share on other sites

It can be done with AutoIt3.

A sample (Hope you like Bliss.bmp) :whistle:

; GuiConstants
Global Const $WS_POPUP = 0x80000000

$picture = 'Bliss.bmp'
GUICreate('My Window', @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP)
GUICtrlCreatePic(@WindowsDir & '\Web\Wallpaper\' & $picture, 0, 0, @DesktopWidth, @DesktopHeight)
GUISetState()
Sleep(5000)

Proof of Concept that runs at T-12 for me. On top or not can be done ;) . She can even hide automated installs for me :yes: .

So long as you have imagination and willingness to script, then AutoIt can do it. :)

Link to comment
Share on other sites

There is a very nice topic about transparent (!) windows (including RunOnceEx), nice background, high resolution and skinning during classic setup @ T12 and before/after.

I am using it since I started with uA, looks very nice.

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
  • Recently Browsing   0 members

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