Mouse effect on Tooltip

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
User avatar
vSky
Posts: 80
Joined: 30 May 2022, 10:13

Mouse effect on Tooltip

Post by vSky » 04 Jul 2022, 09:49

I want it not to disappear when the mouse cursor is in the tooltip message field. Is there a special command for this? Alternatively, would it be easier for me to show the notification message using a gui?

User avatar
boiler
Posts: 16931
Joined: 21 Dec 2014, 02:44

Re: Mouse effect on Tooltip

Post by boiler » 04 Jul 2022, 10:25

What are you saying disappears? The ToolTip? The mouse pointer? The mouse pointer should still be visible even when it overlaps the ToolTip.

Rohwedder
Posts: 7630
Joined: 04 Jun 2014, 08:33
Location: Germany

Re: Mouse effect on Tooltip

Post by Rohwedder » 04 Jul 2022, 10:32

Hallo,
perhaps??:

Code: Select all

q::
ToolTip,% Title := "Hello World!"
Id := WinExist(Title " ahk_class tooltips_class32")
WinSet, ExStyle, ^0x20, ahk_id %Id% ;WS_EX_CLICKTHROUGH
Return

Post Reply

Return to “Ask for Help (v1)”