extraloob Posted January 20, 2009 Posted January 20, 2009 (edited) i want , transparent backround color for label . (on pic)Doesn't work Guictrlsetbkcolor(-1,-2) Edited January 20, 2009 by extraloob
LIMITER Posted January 20, 2009 Posted January 20, 2009 maybe this : GUICrlSetBkColor(-1,$GUI_BKCOLOR_TRANSPARENT) ? Cheers, L|M|TER
extraloob Posted January 20, 2009 Author Posted January 20, 2009 maybe this : GUICrlSetBkColor(-1,$GUI_BKCOLOR_TRANSPARENT) ? Cheers, L|M|TER Doesnt Work
Lynie Posted January 20, 2009 Posted January 20, 2009 Pls help meActually it works fine when I tried it. $lblTransparent = GUICtrlCreateLabel("", 0, 0, 100, 100) GUICtrlSetBkColor($lblTransparent, $GUI_BKCOLOR_TRANSPARENT)
SpookMeister Posted January 20, 2009 Posted January 20, 2009 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]
Robjong Posted January 20, 2009 Posted January 20, 2009 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
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