Jump to content

Recommended Posts

Posted

Pls help me

Actually it works fine when I tried it.

$lblTransparent = GUICtrlCreateLabel("", 0, 0, 100, 100)
GUICtrlSetBkColor($lblTransparent, $GUI_BKCOLOR_TRANSPARENT)
Posted

Not sure if this is the case or not.. but it might require

#include <constants.au3>

[u]Helpful tips:[/u]If you want better answers to your questions, take the time to reproduce your issue in a small "stand alone" example script whenever possible. Also, make sure you tell us 1) what you tried, 2) what you expected to happen, and 3) what happened instead.[u]Useful links:[/u]BrettF's update to LxP's "How to AutoIt" pdfValuater's Autoit 1-2-3 Download page for the latest versions of Autoit and SciTE[quote]<glyph> For example - if you came in here asking "how do I use a jackhammer" we might ask "why do you need to use a jackhammer"<glyph> If the answer to the latter question is "to knock my grandmother's head off to let out the evil spirits that gave her cancer", then maybe the problem is actually unrelated to jackhammers[/quote]

Posted

hey,

as mentioned by LIMITER and Lynie this should do the trick

GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)

working example:

#include <GUIConstantsEx.au3>

Global $hMainGUI = GUICreate('PicButton', 800, 600)
GUICtrlCreatePic("autoit_metal_wall_800x600.jpg", 0, 0, 800, 600) ; first one from: http://www.autoitscript.com/autoit3/downloads_gfx.shtml
GUICtrlCreateLabel("AutoIt", 8, 8, 600, 40)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) ; transparent background
GUICtrlSetFont(-1, 50, 800, 0, "MS Sans Serif") ; set label larger and bold
GUICtrlSetColor(-1, 0xFFFFFF) ; set label color to white
GUISetState(@SW_SHOW, $hMainGUI)

While GUIGetMsg() <> -3
    Sleep(25)
WEnd

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