Search found 6 matches

by knightrule
20 Jan 2023, 14:13
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

boiler wrote:
20 Jan 2023, 13:17
Or write a function where you can pass the color to it, which is a much better approach.
That's a great idea, i'll be implementing that soon. I'm new to coding. Thanks Boiler.
by knightrule
20 Jan 2023, 13:48
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

@knightrule I copied and pasted your last script into SciTE4AutoHotkey and got: Am I missing something? 1. need the full code from ToolTipOpt v1.004, which i did not repost. 2. copy/mod my Function, or you can use it without any function. 3. You should test ToolTipOpt before it was broken, by downg...
by knightrule
20 Jan 2023, 09:46
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

MouseGetPos x, y tooltip .,,,2 tooltip .,,,3 tooltip .,,,4 tooltip .,,,5 tooltip .,,,6 tooltip .,,,7 tooltip .,,,8 tooltip .,,,9 tooltip .,,,10 tooltip .,,,11 tooltip .,,,12 tooltip .,,,13 tooltip .,,,14 tooltip .,,,15 tooltip .,,,16 tooltip .,,,17 ; tooltip .,,,18 tooltip .,,,19 tooltip .,,,20 Too...
by knightrule
17 Jan 2023, 22:33
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

#SingleInstance Force CoordMode, ToolTip, Screen ToolTipFont("s14", "Comic Sans MS") ToolTipColor("8080", "white") ToolTip, This is a ToolTip with custom font and color, 0, 0 return It looks like this in Windows 11: tooltip.png You need a decoy tooltip line like this, after the Coordmode line. Coor...
by knightrule
17 Jan 2023, 20:20
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

Broken since AHK 1.1.34.00 this is my work around on AHK 1.1.36.02 Window 10.: ToolTip_Color_Green() ; benchmark: 30.4ms vs regular tooltip 15.0 ms tooltip Test - this is green ; if tooltip has not been cleared, then each additional Sleep 2000 ; ToolTip_Color has the same benchmark as regular toolti...
by knightrule
15 Jan 2023, 06:43
Forum: Scripts and Functions (v1)
Topic: ToolTipFont / ToolTipColor - options for the ToolTip command
Replies: 92
Views: 52790

Re: ToolTipFont / ToolTipColor - options for the ToolTip command

Tested on AHK 1.1.36.02 if !initialize { initialize:= 1 tooltip just need a starting tooltip before TooltipColor can work tt_size:="s12", tt_font:="Calibri", tt_text:="white", tt_background:="red" ToolTipFont(tt_size, tt_font) ToolTipColor(tt_background, tt_text) } tooltip TooltipColor should work n...

Go to advanced search