computergroove 33 Posted January 13, 2011 Can I make a button wrap the text or force a carriage return so I can have more than 1 line in a button? How about different colors and sizes in the same button? I already know I can add an image but is there a different way? Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Share this post Link to post Share on other sites
Melba23 3,452 Posted January 13, 2011 computergroove,Dog eaten the Help file? Look at the options for style under GUICtrlCreateButton and you find $BS_MULTILINE. Then use a @CRLF macro in the button text to get it to show like this:#include <GUIConstantsEx.au3> #include <ButtonConstants.au3> $hGUI = GUICreate("Test", 500, 500) $hButton = GUICtrlCreateButton("Two" & @CRLF & "lines", 10, 10, 80, 50, $BS_MULTILINE) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEndMust be all the same colour and size though. If you want custom text just use a bitmap - although you will need the $BS_BITMAP style then! M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
computergroove 33 Posted January 13, 2011 Sorry for asking if the info is in the help file. I am using the online manual -> http://www.autoitscript.com/autoit3/docs/functions/GUICtrlCreateButton.htm and I did not see anything about this there. So I asked Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Share this post Link to post Share on other sites