Hi!
you can get scene array via javascript
|
Source code
|
1
2
3
4
5
|
var krpano = document.getElementById("krpanoSWFObject");
var scenes = krpano.get("scene");
for (var i = 0; i < scenes.count; i++) {
console.log(scenes.getItem(i).title);
}
|
this way you can get any attribute of scene tag group or whatever
Only thing is important thet you can get xml arrays after xml complete only
Hope it helps
Andrey