AustrianOak Posted July 8, 2008 Posted July 8, 2008 how do i create a button that looks like the one in the attached image. what properties must i give my button?
AustrianOak Posted July 8, 2008 Author Posted July 8, 2008 Is it possible to put $SS_SUNKEN in the button style?
Airwolf Posted July 8, 2008 Posted July 8, 2008 Is it possible to put $SS_SUNKEN in the button style?Yes. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
AustrianOak Posted July 9, 2008 Author Posted July 9, 2008 i put the style on the button and still does not look like my image.
Airwolf Posted July 9, 2008 Posted July 9, 2008 i put the style on the button and still does not look like my image.Hmm... I just tried it out and it appears I was wrong. $SS_SUNKEN doesn't seem to work. I've never created a sunken button, I'll see if I can figure it out. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
Airwolf Posted July 9, 2008 Posted July 9, 2008 Hmm... I just tried it out and it appears I was wrong. $SS_SUNKEN doesn't seem to work. I've never created a sunken button, I'll see if I can figure it out. I just wrote a little test using a label as a button and it seems to work fine. This way, you can use the $SS_SUNKEN style. #include <GUIConstantsEx.au3> #include <StaticConstants.au3> GUICreate("Test",400,60) $button = GUICtrlCreateLabel("Test Button",10,10,380,40,$SS_SUNKEN + $SS_CENTER + $SS_CENTERIMAGE) GUISetState() While 1 $msg = GUIGetMsg() Select Case $msg = $button MsgBox(0,"","Button Pressed.") EndSelect Sleep(10) WEnd Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
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