Joke758 Posted September 6, 2006 Posted September 6, 2006 how to make a transparent inputbox? Because I have a picture in the backgroud and inputbox is white. Doesn't fit together. How can I make it transparent? [u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!
Moderators SmOke_N Posted September 6, 2006 Moderators Posted September 6, 2006 (edited) how to make a transparent inputbox? Because I have a picture in the backgroud and inputbox is white. Doesn't fit together. How can I make it transparent?Have you tried. GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)After you created the input box to see if that would work? Edit... that seems to only work on Label. Edited September 6, 2006 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Valuater Posted September 6, 2006 Posted September 6, 2006 i am pretty sure you can play with this code and make it workhttp://www.autoitscript.com/forum/index.ph...st&p=1564298)
Moderators SmOke_N Posted September 6, 2006 Moderators Posted September 6, 2006 i am pretty sure you can play with this code and make it workhttp://www.autoitscript.com/forum/index.ph...st&p=1564298)I believe he's talking about a GUI input control (I got that from him using a picture). Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Joke758 Posted September 6, 2006 Author Posted September 6, 2006 (edited) Yes I am talking about a input box in a GUI... GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT) doesn't work.. Edited September 6, 2006 by Joke758 arthalita01 1 [u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!
GaryFrost Posted September 6, 2006 Posted September 6, 2006 The special flag $GUI_BKCOLOR_TRANSPARENT can be used with label and picture controls to give them a transparent background. SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Joke758 Posted September 7, 2006 Author Posted September 7, 2006 so... it's impossible? [u]My Programs:[/u]Word Search Creator - Make your own Word SearchShortHand - Hide a secret message in a jpg fileHex Editor - Edit your Binary fileIncrease file size - Increase the size of any filesArt Generator - A program that generate random picture[u]My Functions:[/u]16-Bits Hash - My Hash function similar to MD5Probabilities - My probabilities function (factorial, permuation, combination)_GetDate() - Convert a date to a day of the week_Base(), _Dec() - Convert a number in any base (bin, oct, hex, dec). Create your own!
Valuater Posted September 7, 2006 Posted September 7, 2006 (edited) yes... for a log-in???create the guicreate the picset pic as disabledcreate a label - transparentcreate a button to submit ( or whatever)while loopif _Ispressed() ; see help or link below$read = guictrlread() the labelset the label data $read & $key_pressedendifif message = submit then.....wendlink... for _IsPressedhttp://www.autoitscript.com/forum/index.ph...;hl=_ispressed#8) Edited September 7, 2006 by Valuater
cppman Posted September 9, 2006 Posted September 9, 2006 (edited) Create your own input control, lol. Thats the only thing you can do. ;example - 1. ONLY if the window is activated do, 2. Check for the keys that are pressed, 3. Crate a base label, 4. Add to the label the key that was pressed. but i guess that is too much work, for such a simple question Edited September 9, 2006 by CHRIS95219 Miva OS Project
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