JohnnyThrash Posted March 14, 2010 Posted March 14, 2010 Is there a way to place the shell's default close and maximize buttns on my GUI? I'm making a skinned window but want the shell's default close minimize and maximize button to still extist on the window. I want to basically place these close etc. buttons on my gui that the shell is using. They don't even need to function properly regarding I can give them function.
JohnOne Posted March 15, 2010 Posted March 15, 2010 I think you just assign your buttons to, for example If $button1 Then GUISetState(@SW_MINIMIZE) If $button2 Then GUISetState(@SW_MAXIMIZE) If $button3 Then Exit AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
JohnnyThrash Posted March 16, 2010 Author Posted March 16, 2010 I think you just assign your buttons to, for exampleIf $button1 Then GUISetState(@SW_MINIMIZE)If $button2 Then GUISetState(@SW_MAXIMIZE)If $button3 Then ExitThanks for your response, but this isn't what I meant by my question. I mean is there a way to use the shells default open and close buttons on your gui. I mean to use them on a skinned window purely for aesthetics. Worst case scenario I'll just have the program figure out what OS it is and choose a graphic representation on the button based on that.
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