Been there done that !
use this action to loop throug all hotspots and it will remove only the thumbs and set the scene count back to 0 that will fix your issue of the thumbs. that one i could not figure out i had to PM Klaus and he provided the scenecount solution.
|
Quellcode
|
1
2
3
4
5
6
7
8
9
|
<action name="removethumbs">
if(%1 != NEXT, set(i,0));
if(i LT scene.count,
txtadd(thumbname,'thumb_',get(i));
removeplugin(get(thumbname));
inc(i);
removethumbs(NEXT);
);
</action>
|
also need to reset the scene count
|
Quellcode
|
1
|
set(scene.count,0);
|
keep in mind you CAN link from a scene based tour directly to an external xml for a single scene you just CANNOT use the BLEND part. or it will be only black. so you can jump out of a vtour into a stand alone pano and jump back in as long as you do not BLEND.
loadpano(newxml.xml,null,MERGE); will work from scene ->external xml
loadpano(newxml.xml,null,MERGE|BLEND(2)); will not work from scene -> external xml
getting back in is 2 steps.
first you will need to load the xml, then the sceneright after.
loadpano(vtour.xml,null,MERGE); loadscene(scenename);