forever0donotknowme Posted March 20, 2012 Posted March 20, 2012 (edited) really i need your help in next script ToolTip("forever0donotknowme"&@CRLF&"please help me",500,200) Sleep(5000) how can i make big font with red color also how can i make this written repeat itself 3 times after 5 seconds Edited March 20, 2012 by forever0donotknowme
UEZ Posted March 20, 2012 Posted March 20, 2012 With ToolTip() function it is not possible to change the font or font color. Use a GUI instead something like that. Very simple example!: #include <StaticConstants.au3> #include <WindowsConstants.au3> ToolTipEx("forever0donotknowme"&@CRLF&"please help me", 500, 200) Func ToolTipEx($sTxt, $iX, $iY, $sFont = "Arial", $iFontSize = 16, $iFontColor = 0xFF0000, $iTimeOut = 2000) Local Const $hGUI_TTE = GUICreate("", 268, 97, $iX, $iY, $WS_POPUP) Local Const $idLabel1 = GUICtrlCreateLabel("", 0, 0, 268, 97, $SS_GRAYFRAME) Local Const $idLabel2 = GUICtrlCreateLabel($sTxt, 24, 24, 222, 60) GUICtrlSetFont(-1, $iFontSize, 400, 0, $sFont, 4) GUICtrlSetColor(-1, $iFontColor) GUISetState(@SW_SHOW) Sleep($iTimeOut) GUIDelete($hGUI_TTE) EndFunc You can add some more checks to the function, e.g. calculate the height/width of the string and create GUI appropriately. Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Moderators Melba23 Posted March 20, 2012 Moderators Posted March 20, 2012 forever0donotknowme,calculate the height/width of the string and create GUI appropriatelyLook at the StringSize UDF in my sig to see how you can do that very easily. 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
UEZ Posted March 20, 2012 Posted March 20, 2012 @M23: I wanted that he tries at his own to do some calculations or search the forum for solutions. It is very easy to provide a solution which already exists... Br, UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ
Skitty Posted April 6, 2012 Posted April 6, 2012 Probably not what the guy wants but in the case that this is for some kind of gui and should point to a control, I put this wrapper as an alternative for GuiCtrlSetTip
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