Rawox Posted February 6, 2009 Posted February 6, 2009 (edited) Does anyone know how I get to the next sentence in a tooltip? Using the command: 'Tooltip' Greetz, Rawox Edited February 6, 2009 by Rawox
furrycow Posted February 6, 2009 Posted February 6, 2009 (edited) Does anyone know how I get to the next sentence in a tooltip? Using the command: 'Tooltip' Greetz, Rawox What do you mean by next sentence? If you mean next line, that is.. ToolTip ( "First Line"&@CRLF&"Second Line" , 0 , 0 , "Tooltip Title") Edited February 6, 2009 by furrycow Instant Lockerz Invite - www.instantlockerzinvite.co.uk
Authenticity Posted February 6, 2009 Posted February 6, 2009 You can make your own tooltip like window: $hGUI = GUICreate('', 50, 50, 0, 0, 0x80000000, 0) GUICtrlCreateLabel('Ballon Tip', 0, 0, 50, 50) GUICtrlSetFont(-1, Default, Default, 2, 'Comic Sans MS') GUICtrlSetState(-1, 0x80) GUICtrlSetBkColor(-1, 0x8F4040) GUISetState() Sleep(4000) GUIDelete($hGUI)
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