Page 1 of 1

imagemap popout big image at hover, possible?

Posted: Thu Apr 26, 2018 6:16 am
by SLim_Games
Hi,

I was wondering if it is possible to make an imagemap show a big image when you hover over it while it's in a vbox.

Code: Select all

vbox:
	spacing 5
	imagemap style "chat_left":
	ground "test.png"
	hover "testH.png"
	hotspot(0, 0, 171, 200):
		action Show("testBig")
Right now I just show another screen when you click on the image, but can you make it that it shows the big picture when you hover over it. so it's outside the vbox?

Re: imagemap popout big image at hover, possible?

Posted: Thu Apr 26, 2018 8:44 am
by DannX
You can try giving it a hovered button property, that runs the action when you hover on the imagemap.

Code: Select all

vbox:
     spacing 5
     imagemap style "chat_left":
         ground "test.png"
	 hover "testH.png"
	 hotspot(0, 0, 171, 200):
             hovered Show("testBig")
	     unhovered Hide("testBig")