Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<krpano version="1.0.8" onstart="intro();"> <plugin name="ilovekrpano" url="ilovekrpano.swf" visible="false" align="center" keep="true" height="prop" width="60%" alpha="1" zorder="100"/> <display fps="20" /> <action name="intro" > set(plugin[ilovekrpano].visible,true); wait(2); tween(plugin[ilovekrpano].alpha,0,0.5); load1(); set(plugin[ilovekrpano].visible,false); set(display.fps,60); </action> <action name="load1"> loadpano(3.xml,null,MERGE,BLEND(1)); </action> </krpano> |
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
![]() |
Source code |
1 2 3 4 5 6 |
<action name="playbutton"> wait(10); hotspot[video].resume(); </action> |
![]() |
Source code |
1 2 |
onloaded="wait(10); playbutton();" |
![]() |
Source code |
1 2 |
<events onloadcomplete="wait(10); action(playbutton);" /> |
This post has been edited 4 times, last edit by "esys" (Dec 6th 2010, 11:55pm)
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<action name="playbutton"> delayedcall(10, hotspot[video].resume()); </action> ... <scene name="scene_light_+2" title="light_+2" onstart="wait(LOAD); moveto(97.497,23.698, linear(10))" thumburl="light_+2.tiles/thumb.jpg"> <plugin name="videoplayer" url="%SWFPATH%/plugins/videoplayer.swf" keep="true" /> <view hlookat="141.23" vlookat="22.91" fovtype="MFOV" fov="100" maxpixelzoom="" fovmin="35" fovmax="100" /> <preview url="light_+2.tiles/preview.jpg" /> <events onloadcomplete="playbutton();" /> <image>.... <hotspot name="video" url="plugins/videoplayer.swf" videourl="bouee-video.flv" width="800" height="600" visible="true" enabled="true" handcursor="true" capture="true" children="true" ath="12" atv="10" origin="" edge="" scale="0.5" rx="0" ry="0" rz="0" distorted="true" pausedonstart="false" buffertime="" loop="false" volume="0.7" directionalsound="true" range="120" onloaded="" onhover="if(ispaused, showtext(click to play), showtext(click to pause));" onclick="togglepause();" onvideocomplete="set(visible,false);" /> |