Nanaki Posted March 22, 2005 Posted March 22, 2005 Hi, I'm trying to print text (sent through cmdline) onto a pic (made with control). Now, I tried with a label, but I can't get rid of the background. Is there any other way to make it work? Thanks!
zcoacoaz Posted March 23, 2005 Posted March 23, 2005 (edited) you need the Autoit+ to do it in the newer version labels are transparentedit: get it right here http://www.autoitscript.com/forum/index.php?showtopic=9202 Edited March 23, 2005 by Xenogis [font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]
renaixsence Posted May 4, 2005 Posted May 4, 2005 (edited) you need the Autoit+ to do it in the newer version labels are transparentedit: get it right here http://www.autoitscript.com/forum/index.php?showtopic=9202<{POST_SNAPBACK}>Hi, ( I'm a newbie )I'm using the latest version of AutoIt but my label's background stays grey ( I'm using a background picture in my window ) I can make my label transparent but then it seems to disappear. This is a part of my script :GUICtrlCreatePic(@Systemdir & "\oobe\images\wpakey.jpg",0,0, 250,200) GuiCtrlSetState(-1, $GUI_DISABLE) ;GUISetBkColor ( 0xBAD3FC ) AutoItSetOption("GUICloseOnESC", 0) $filemenu = GuiCtrlCreateMenu ("File") $exititem = GuiCtrlCreateMenuitem ("Exit",$filemenu) $helpmenu = GuiCtrlCreateMenu ("?") $aboutitem = GuiCtrlCreateMenuitem ("About",$helpmenu) GUICtrlCreateLabel("Login :", 30, 21, 55, 20) ;~ GUICtrlSetColor(-1,0xff0000) ; Red $login = GUICtrlCreateInput("User name", 90, 20, 100, 20) GUICtrlSetTip(-1, "Type your user name.") GUICtrlCreateLabel("Password :", 30, 71, 55, 20) $password = GUICtrlCreateInput("Password", 90, 70, 100, 20, $ES_PASSWORD) GUICtrlSetTip(-1, "Type your password.")I want the label "Login" and "Password" to be transparrent and the $filemenu as well.login.au3 Edited May 4, 2005 by renaixsence
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