I am attempting to create a tour that has 5 panos. There is a combobox as well as hotspots on the panos that allow the user to navigate to a different pano. Everything is working fine with the exception of the polygonal hotspots I have on one of my panos. Using the pointers on a previous thread, I created polygonal hotspots that "blink" to catch the users attention. These are not for navigation but just for an informational pop-up box.
The problem is if I use the combobox to navigate away from the pano with blinking polygonal hotspots (let's call it pano1) and then come back to pano1, the blinking polygonal hotspots are not there. If I click on the navigational hotspots instead of using the combobox to go to another pano and then come back to pano1, the blinking polygonal hotspots are there. The code I am using to load the polygonal hotspots is below:
<krpano version="1.0.8" onstart="hotspotblink(info1);hotspotblink(info2);">
<action name="hotspotblink">
tween(hotspot[%1].alpha, 0.8, 1.0, default, tween(hotspot[%1].alpha, 0.2, 1.0, default, hotspotblink(%1)) );
</action>
Also, I have keep=true property when declaring the actual hotspot.
Any ideas? DO I need to use scenes to make this work how I intend? Thanks.