Das findet anscheinend zentral in FMX.Forms.TApplication statt.
Delphi-Quellcode:
/// <summary>Cancels the display of a hint for a control.</summary>
procedure CancelHint;
/// <summary>Hides the current hint.</summary>
procedure HideHint;
/// <summary>Occurs when the mouse pointer moves over a control or menu item that can display a Help Hint.</summary>
property OnHint: TNotifyEvent read FOnHint write FOnHint;
Man könnte schlimmstenfalls OnHint abfangen und da seinen eigenen Timer laufen lassen,
der den Hint dann mit CancelHint oder HideHint brutal abbricht.