Python:
if talk:
imagebutton:
idle "icons/talk_button.webp"
hover "icons/talk_button.webp"
xalign 0.83
yalign 0.95
tooltip "Talk"
action Jump ("girl")
$ tooltip = GetTooltip()
if tooltip:
text "[tooltip]":
xanchor 0.5
xalign 0.9
yalign 0.95
if wink:
imagebutton:
idle "icons/wink_button.webp"
hover "icons/wink_button.webp"
xalign 0.9
yalign 0.95
tooltip "Smart Arse"
action Jump ("girl")
$ tooltip = GetTooltip()
if tooltip:
text "[tooltip]":
xanchor 0.5
xalign 0.84
yalign 0.98
Python:
if talk:
imagebutton:
idle "icons/talk_button.webp"
hover "icons/talk_button.webp"
xalign 0.83
yalign 0.95
tooltip "Talk"
action Jump ("girl")
if wink:
imagebutton:
idle "icons/wink_button.webp"
hover "icons/wink_button.webp"
xalign 0.9
yalign 0.95
tooltip "Smart Arse"
action Jump ("girl")
$ tooltip = GetTooltip()
if tooltip:
text "[tooltip]":
xanchor 0.5
xalign 0.84
yalign 0.98
Basically I have an image buttons, when you hover over them I want the tooltip associated with it to show under each separate image button. How do I get this to happen.