Core Function ToolTip
(Created page with "<pre> ToolTip( <text>, <x>, <y> ) </pre> === Description === Creates a tooltip anywhere on the screen. ==== text ==== The text of the tooltip. (An empty string will delete a ...") |
|||
Line 9: | Line 9: | ||
==== text ==== | ==== text ==== | ||
− | The text of the tooltip | + | The text of the tooltip. |
==== x, y ==== | ==== x, y ==== | ||
Line 25: | Line 25: | ||
If the coords would cause the tooltip to run off screen, it is repositioned to visible. | If the coords would cause the tooltip to run off screen, it is repositioned to visible. | ||
− | Tooltip appears until it is cleared, until | + | Tooltip appears until it is cleared, until program terminates, or ***sometimes*** until it is clicked upon. You may use @CR or @LF to create multi-line tooltips. |
+ | |||
+ | Note you can create as many tooltips as you wish however its best to store their Handles so you can delete them later using ToolTipKill. | ||
=== Example === | === Example === | ||
Line 31: | Line 33: | ||
<syntaxhighlight lang="sputnik"> | <syntaxhighlight lang="sputnik"> | ||
// This will create a tooltip in the upper left of the screen | // This will create a tooltip in the upper left of the screen | ||
− | ToolTip("This is a tooltip", 0, 0); // Create a tooltip | + | $a = ToolTip("This is a tooltip", 0, 0); // Create a tooltip |
Sleep(2000); // Sleep to give tooltip time to display | Sleep(2000); // Sleep to give tooltip time to display | ||
− | + | ToolTipKill($a); // Remove the tooltip | |
// Same as above but this time place the tooltip at the mouse pointer | // Same as above but this time place the tooltip at the mouse pointer | ||
− | ToolTip("This is a tooltip"); // Create a tooltip | + | $a = ToolTip("This is a tooltip"); // Create a tooltip |
Sleep(2000); // Sleep to give tooltip time to display | Sleep(2000); // Sleep to give tooltip time to display | ||
− | ToolTip( | + | ToolTip($a); // Remove the tooltip |
</syntaxhighlight> | </syntaxhighlight> | ||
+ | Heres an example of a program with 2 hotkeys the first hotkey A will create a tooltip and the second hotkey B will delete all tooltips | ||
+ | |||
+ | <syntaxhighlight lang="sputnik"> | ||
+ | glob $lol = array(); | ||
+ | glob $i = 0; | ||
+ | |||
+ | $GUI = GUICreate("mooooo", 200, 200); | ||
+ | GUISetState($GUI, @Show); | ||
+ | $B1 = GUICreateButton($GUI, "mybutton", "PRESS", 8, 8); | ||
+ | $E1 = GUICreateLabel($GUI, "toy", "Hello", 8, 48); | ||
+ | GUILink($B1, @lClick, 'msgbox("Hello World!");'); | ||
+ | |||
+ | HotKeySet("a", "lol();"); | ||
+ | HotKeySet("b", "lol2();"); | ||
+ | |||
+ | Until ( GUIState( $GUI ) == @sClosed ) DoEvents(); | ||
+ | |||
+ | Function lol() | ||
+ | { | ||
+ | push($lol, ToolTip("This is a tooltip $i")); | ||
+ | $i++; | ||
+ | } | ||
+ | |||
+ | Function lol2() | ||
+ | { | ||
+ | foreach($lol as $l) | ||
+ | { | ||
+ | ToolTipKill($l); | ||
+ | } | ||
+ | $lol = array(); | ||
+ | } | ||
+ | </syntaxhighlight> | ||
[[Category:Core Function]] | [[Category:Core Function]] |
Revision as of 11:43, 27 November 2011
ToolTip( <text>, <x>, <y> )
Contents |
Description
Creates a tooltip anywhere on the screen.
text
The text of the tooltip.
x, y
Optional; The x,y position of the tooltip.
Return Value
Returns the value of the previous setting.
Remarks
If the x and y coordinates are omitted the, tip is placed near the mouse cursor.
If the coords would cause the tooltip to run off screen, it is repositioned to visible.
Tooltip appears until it is cleared, until program terminates, or ***sometimes*** until it is clicked upon. You may use @CR or @LF to create multi-line tooltips.
Note you can create as many tooltips as you wish however its best to store their Handles so you can delete them later using ToolTipKill.
Example
// This will create a tooltip in the upper left of the screen $a = ToolTip("This is a tooltip", 0, 0); // Create a tooltip Sleep(2000); // Sleep to give tooltip time to display ToolTipKill($a); // Remove the tooltip // Same as above but this time place the tooltip at the mouse pointer $a = ToolTip("This is a tooltip"); // Create a tooltip Sleep(2000); // Sleep to give tooltip time to display ToolTip($a); // Remove the tooltip
Heres an example of a program with 2 hotkeys the first hotkey A will create a tooltip and the second hotkey B will delete all tooltips
glob $lol = array(); glob $i = 0; $GUI = GUICreate("mooooo", 200, 200); GUISetState($GUI, @Show); $B1 = GUICreateButton($GUI, "mybutton", "PRESS", 8, 8); $E1 = GUICreateLabel($GUI, "toy", "Hello", 8, 48); GUILink($B1, @lClick, 'msgbox("Hello World!");'); HotKeySet("a", "lol();"); HotKeySet("b", "lol2();"); Until ( GUIState( $GUI ) == @sClosed ) DoEvents(); Function lol() { push($lol, ToolTip("This is a tooltip $i")); $i++; } Function lol2() { foreach($lol as $l) { ToolTipKill($l); } $lol = array(); }