Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comLocation: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 |
<action name="load1">
loadpano(1.xml,null,MERGE,BLEND(1));
wait(load);
wait(blend);
wait(2);
set(autorotate.enabled, true);
</action>
|
: https://pame.virtualtuur.comThis post has been edited 1 times, last edit by "Tuur" (Jun 14th 2010, 7:17pm)
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.comLocation: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
: https://pame.virtualtuur.com
|
|
Source code |
1 2 3 4 5 6 7 8 9 |
var swf = createswf("krpano.swf", "krpanoSWFObject", "100%", "100%");
swf.addVariable("xml", "krpano.xml");
swf.addVariable("events.onloadcomplete", "js( jsloadcomplete() );");
swf.embed("krpanoDIV");
function jsloadcomplete()
{
...
}
|
|
|
Source code |
1 2 3 4 5 |
var krpano = document.getElementById("krpanoSWFObject");
if (krpano && krpano.get)
{
var files_loaded = krpano.get("files_loaded");
}
|