Hi!
something like this
1-st hotspot
onover="set(hotspot[hs1].visible,false);set(hotspot[hs2].visible,true);"
2-nd hotspot
onout="set(hotspot[hs1].visible,true);set(hotspot[hs2].visible,false);"
Regards
Andrey
Ah okay, that should have been obvious since I'm using the hotspot[name] arrays to generate these in the first place with Javascript.
That works, although i tried using
tween(hotspot[hs1].alpha,0,0.2) and
tween(hotspot[hs2].alpha,100,0.2) and the PNG image has a smooth transition but the text field just turns on and off, not very pretty.
I might see if I can make a javascript function to control these outside and then call that function with the hotspot names, maybe that will work better than trying to do all of these concurrently in the onover and onout properties.
EDIT: Alternatively is there a tooltip feature or plugin for the flash viewer? I tried a Javascript ToolTip but Javascript can't display over Flash so the text just showed up on the side of the player.
EDIT2: Actually the Showtext() function worked perfectly for this, it looked way better and still did what I wanted. Thanks for the help!