Hi,
the "data" and "action" node are special nodes,
they are used to store data that will not be parsed,
access the content of this nodes with "data[name].content" or "action[name].content"
e.g.
xml:
|
Quellcode
|
1
2
3
4
5
|
<data name="myhtmldata">
<html>
<p>hello data</p>
</html>
</data>
|
as3:
|
Quellcode
|
1
|
var myhtmldata:string = krpano.get("data[myhtmldata].content");
|
best regards,
Klaus