hiepkhachsg Posted March 2, 2016 Posted March 2, 2016 Hi, I'm a newbie. I just begin with Autoit so i have some stupic questions, pls help. How can i make a GUI button title in 2 lines, and how to make a button tooltip when mouse cursor floating on the GUI button? Thanks.
hiepkhachsg Posted March 2, 2016 Author Posted March 2, 2016 Now, i can make button tooltip but still not title in 2 lines. Pls help
jdelaney Posted March 2, 2016 Posted March 2, 2016 expandcollapse popup#include <ButtonConstants.au3> #include <GUIConstantsEx.au3> Example() Func Example() ; Create a GUI with various controls. Local $hGUI = GUICreate("Example", 300, 200) ; Create a button control. Local $idNotepad = GUICtrlCreateButton("Run Notepad asdf asdf asdf", 120, 170, 85, 25,$BS_MULTILINE) Local $idClose = GUICtrlCreateButton("Close", 210, 170, 85, 25) ; Display the GUI. GUISetState(@SW_SHOW, $hGUI) Local $iPID = 0 ; Loop until the user exits. While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE, $idClose ExitLoop Case $idNotepad ; Run Notepad with the window maximized. $iPID = Run("notepad.exe", "", @SW_SHOWMAXIMIZED) EndSwitch WEnd ; Delete the previous GUI and all controls. GUIDelete($hGUI) ; Close the Notepad process using the PID returned by Run. If $iPID Then ProcessClose($iPID) EndFunc ;==>Example IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
AutoBert Posted March 2, 2016 Posted March 2, 2016 (edited) sorry, i missunderstood the question. Edited March 2, 2016 by AutoBert missunderstood the question
InunoTaishou Posted March 2, 2016 Posted March 2, 2016 Pretty sure he meant make a button with multiline so it wraps, which jdelaney answered. You can use GUICtrlSetTip(ControlID, Text) to set the tooltip of the button.
water Posted March 2, 2016 Posted March 2, 2016 N.B. Could you please give meaningful titles to your threads? Everyone on this forum is looking for help A descriptive title attracts much more users to then read the entire thread. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
hiepkhachsg Posted March 2, 2016 Author Posted March 2, 2016 Tks all so much. And i want get the event when has a right click on a button, how can i get it?
Jfish Posted March 2, 2016 Posted March 2, 2016 Check this thread: Build your own poker game with AutoIt: pokerlogic.au3 | Learn To Program Using FREE Tools with AutoIt
hiepkhachsg Posted March 4, 2016 Author Posted March 4, 2016 Tks Jfish. Topic close at here. Tks all.
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