Jump to content

Recommended Posts

Posted (edited)

What do you mean with invisible?

Edit: this is what you need?

#include <GUIConstantsEx.au3>

$hGUI = GUICreate("Test")
$hPic = GUICtrlCreatePic(@WindowsDir & "Gone Fishing.bmp",0,0,400,400)
$hLabel = GUICtrlCreateLabel("This is a test",100,100,100,20)
GUICtrlSetBkColor($hLabel,$GUI_BKCOLOR_TRANSPARENT)
GUISetState(@SW_SHOW)

Do
    Sleep(10)
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Edited by Andreik

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
×
×
  • Create New...