Nanaki 0 Posted April 5, 2005 I don't know if it's a bug or if it's fixable, but when I try to put a label on top by using GUICtrlSetState($label, $GUI_SHOW) the label isn't transparent anymore. Is it fixable? Tnx in advance, Share this post Link to post Share on other sites
eJan 0 Posted April 5, 2005 Try with: $label = GUICtrlCreateLabel("label", 12, 2, 180, 14)GUICtrlSetStyle($label, -1, $WS_EX_TRANSPARENT) Share this post Link to post Share on other sites
Nanaki 0 Posted April 5, 2005 Nope, doesn't work. Thanks for trying tho. Share this post Link to post Share on other sites
CyberSlug 6 Posted April 6, 2005 Are you using the latest AutoIt beta? I've tried replicating the problem, and I think the http://www.autoitscript.com/fileman/users/jpm/AutoIt3-gui/ works okay...Both labels are transparent for me when I run the following on AutoIt 3.1.0.15S#include <GuiConstants.au3> GUICreate("Example") $labelOne = GUICtrlCreateLabel("yaa for lots of text blah blah blah", 10, 10, 100, 30) $labelTwo = GUICtrlCreateLabel("this is an overlapping label. it wraps around", 20, 20, 100, 30) GUICtrlSetState($labelOne, $GUI_SHOW) guisetstate() While GuiGetMsg() <> -3 WEnd Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig! Share this post Link to post Share on other sites
Nanaki 0 Posted April 6, 2005 Thanks, but it seems the problem is the use of cwebpage :/ Looks like it can't be fixed... Share this post Link to post Share on other sites