And... I have another question:) Since there is no possibility to read all positions of hotspots saved with pano2QTVR I created my own aplication were I can load flat 360-image and set some points (hotspots) and save it to database. I assumed that: 1. the center of the image is 0 pan and 0 tilt 2. t...
Ok thanks. I guess handling _alpha is not enough... If MovieClip has some behavior attached (onPress, onRollOver or so on) those actions will block elements beneath. If anybody faces same problem I solved it like this: hsMovie.onEnterFrame = function(){ if(!this.hitTest(PanoArea)){ this._alpha =0; d...
Hello again I cannot manage _visibility of movieclips which were added with addHotSpot. I only cannot manage it when the pano is not moving (while its pressed by user). What I do is: 1. Create movieClip var hsMovie:MovieClip=_root.attachMovie("pa","hsMovie"+idx,_root.getNextHighestDepth()); 2. assig...
Is it possible to lock somehow mouseListener for loaded pano?
For example I don't want scrollbutton on mouse to scroll FOV parameter on pano as mouse cursor is not over the pano.
Hello Is it posible to read in flash all hotspots from loaded 360 swf ? Something like getAllOriginalHotspots(panoID) or clearAllOriginalHotspots(panoID). I want to do as follows: 1. Create pano with hotspots in pano2qtvr 2. Then load it to main movie 3. Get (read) all positions of hotspots created ...