• grouping is not available yet but it will be on next version. you can do what you say though.

    onover="tween(hotspot[hotspot1].alpha,1); tween(hotspot[hotspot2].alpha,1);"
    onout="tween(hotspot[hotspot1].alpha,0.5); tween(hotspot[hotspot2].alpha,0.5);"

    use that on both hotspots and when 1 is hovered over they both will light up. swap out your hotspot name and use a different setting to highlight however you wish. alpha may not do what you are looking for, but you get the idea.

  • Am I writing this correctly? It's not working

  • Hi,

    there is also a other way:

    every plugin and hotspot has an "hovering" attribute,
    normally this attribute should be only used for checking if an hotspots will be hovered,
    but for polygonal hotposts setting it manually to true can be used to simulate hovering,

    now you can set the in the onover/onout events of one hotspot the "hovering" attribute of an other hotspot

    e.g.

    Code
    <hotspot name="spot1" 
         	... 
         	onover="set(hotspot[spot2].hovering,true);" 
         	onout="set(hotspot[spot2].hovering,false);" 
         	...

    and the same for the other hotspot:

    Code
    <hotspot name="spot2" 
         	... 
         	onover="set(hotspot[spot1].hovering,true);" 
         	onout="set(hotspot[spot1].hovering,false);" 
         	...

    best regards,
    Klaus

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!