zFrank Posted August 26, 2008 Posted August 26, 2008 hi there, can i just make the title of my window transparent? i am not talking about the whole window. how to do it? [font="Georgia"]GSM Expert[/font] but not AutoIt :DProud to be Admin Of : http://www.gsmhosting.net/visit my Forum... http://www.gsmhosting.net/vbb/index.php$Life = "Happy" If @Error Then $Life = "Risk"
PsaltyDS Posted August 26, 2008 Posted August 26, 2008 (edited) hi there, can i just make the title of my window ransparent? i am not talking about the whole window. how to do it? How would that be different from a dialog box with no title bar, which you already achieve with styles? #include <WindowsConstants.au3> $hGui = GUICreate("", 300, 200, 300, 300, $WS_POPUPWINDOW, Default) $ctrlButton = GUICtrlCreateButton("Close", 100, 100, 100, 30) GUISetState() Do Sleep(20) Until GUIGetMsg() = $ctrlButton Edit: Added demo. Edited August 27, 2008 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
NELyon Posted August 27, 2008 Posted August 27, 2008 How would that be different from a dialog box with no title bar, which you already achieve with styles? #include <WindowsConstants.au3> $hGui = GUICreate("", 300, 200, 300, 300, $WS_POPUPWINDOW, Default) $ctrlButton = GUICtrlCreateButton("Close", 100, 100, 100, 30) GUISetState() Do Sleep(20) Until GUIGetMsg() = $ctrlButton Edit: Added demo. I believe he meant semitransparent. The only way I could see that happening is making a superthin GUI with nothing but a titlebar as a parent to the main window. Make the parent window always a certain offset of the child (Or vice versa), then set the parent window transparent. Confusing?
zFrank Posted August 27, 2008 Author Posted August 27, 2008 Confused how to do it? i really could not understand. [font="Georgia"]GSM Expert[/font] but not AutoIt :DProud to be Admin Of : http://www.gsmhosting.net/visit my Forum... http://www.gsmhosting.net/vbb/index.php$Life = "Happy" If @Error Then $Life = "Risk"
Szhlopp Posted August 27, 2008 Posted August 27, 2008 Confused how to do it? i really could not understand. You can do whatever you want with a good photo program... PNG's are your friend=) RegEx/RegExRep Tester!Nerd Olympics - Community App!Login UDFMemory UDF - "Game.exe+753EC" - CE pointer to AU3Password Manager W/ SourceDataFiler - Include files in your au3!--- Was I helpful? Click the little green '+'
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