Achilles Posted November 3, 2006 Posted November 3, 2006 I was just looking at iTunes and I realized that they have round buttons and then I wondered if it's possible to have round buttons with autoit. Any confirmation welcomed... My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
Richard Robertson Posted November 3, 2006 Posted November 3, 2006 Look into regions. You could use skins and make round button images too I guess.
NELyon Posted November 3, 2006 Posted November 3, 2006 (edited) Not a button, but works all the same $GUI = GUICreate("GUI") $Fakebutton = GUICtrlCreatePic("C:\Circle.jpg", 50, 50, 50, 50) GUISetState() While 1 $Msg = GUIGetMsg() If $Msg = $FakeButton Then ;;Do your junk here EndIf Wend Untested Edited November 3, 2006 by codemyster
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