TrackManiaControl/application/core/FML/Script/Templates/TooltipMouseOver.txt

6 lines
194 B
Plaintext
Raw Normal View History

if (C_FML_TooltipIds.existskey(Event.ControlId)) {
declare TooltipControl <=> Page.GetFirstChild(C_FML_TooltipIds[Event.ControlId]);
if (TooltipControl != Null) {
TooltipControl.Show();
}
}