I am trying to hide an image whenever the mouse hovers over a hover image.
This is my ground image: (pickydinner.png)

And this is my hover image: (pickyodinner.png)

Here is the code I am using:
Code: Select all
screen pickydinner:
default a = False
default b = False
imagemap:
ground "pickydinner.png"
hover "pickyodinner.png"
selected_idle "pickyodinner.png"
hotspot (561, 113, 126, 94) hovered SetScreenVariable("a", True) unhovered SetScreenVariable("a", False) action [Return("Naesu"), SelectedIf(a) ] activate_sound "chosen.mp3" hover_sound "hover.mp3"
hotspot (492, 158, 159, 167) hovered SetScreenVariable("a", True) unhovered SetScreenVariable("a", False) action [Return("Naesu"), SelectedIf(a) ] activate_sound "chosen.mp3" hover_sound "hover.mp3"
hotspot (160, 164, 104, 209) hovered SetScreenVariable("b", True) unhovered SetScreenVariable("b", False) action [Return("Aules"), SelectedIf(b) ] activate_sound "chosen.mp3" hover_sound "hover.mp3"
hotspot (171, 188, 168, 100) hovered SetScreenVariable("b", True) unhovered SetScreenVariable("b", False) action [Return("Aules"), SelectedIf(b) ] activate_sound "chosen.mp3" hover_sound "hover.mp3"

I just want the pickydinner.png to be hidden, and I only want the pickyodinner.png to be shown when these hotspots are hovered.
Is this possible in any way?
In advance, i'm so very sorry for the bad explanation.
