to create offline tours maybe use electron, there was a tutorial video posted recently
The problem with electron is it's not working with mobiles! The only solution I see that works for desktop and mobiles is using DATA-URLs!
to create offline tours maybe use electron, there was a tutorial video posted recently
The problem with electron is it's not working with mobiles! The only solution I see that works for desktop and mobiles is using DATA-URLs!
Hi, the xml is loading fine as I mentioned earlier, all is working well including the Base64 encoded images, just there is no sound cause the Soundinterface is not loading when the xml is embedded into the html page!! But if I use this same xml as an external file the soundinterface is loaded!! I think the issue is related to something else!
I have also to mention that this issue doesn't occur when the same xml is used as external file! But when it is embedded into the pano html page the sound interface doesn't load!!
Indexofrefraction, sorry but you didn't give a response to the fact that soundinterface plugin is not loading! The links you mentioned are just talking about the base64 audio encoding!
Hi, I embedded xml file into the pano Html page following the instructions here: https://krpano.com/docu/localusage/?version=120
All is working fine except for the sound! I have the notification: "ERROR: Soundinterface Load Error: Loading failed"
I tried <plugin name="soundinterface" url="data:text/javascript;base64,....
and <plugin name="soundinterface" url="data:text/plain;base64,....
but no one is working!
Would this be a krpano issue?! Thanks for your help!
Okay, solved! Thank you
Hello, I want to know if the whole level tiles could be charged and shown on the screen at once (The same way as with a normal 6 cubes pano)? Actually the pano tiles are not shown (although they are fully loaded) till we're moving around the pano! Thank you
Thank you tuur, it works fine I had just to manage the code a bit to fit my needs!
Hi all, any turn back? If someone out there could help Please do, I have an urgent project that depends on this! Thank you
Hi, I have a sprite image sequence of 5 frames that starts playing and then stops on the last frame, I want to get it playing backwards after that, from frame 5 to frame 0! I tried but noway! Could someone please let me know how to do it from klaus animation code:
<action name="do_crop_animation" scope="local" args="framewidth, frameheight, framerate">
<!-- define local variables -->
calc(local.xframes, (caller.imagewidth /framewidth) BOR 0);
calc(local.frames, xframes * ((caller.imageheight / frameheight) BOR 0));
def(local.frame, integer, 0);
<!-- set the first frame -->
calc(caller.crop, '0|0|' + framewidth + '|' + frameheight);
<!-- do the animation -->
setinterval(calc('crop_anim_' + caller.name), calc(1.0 / framerate),
if(caller.loaded,
inc(frame);
if(frame GE frames, set(frame,4);clearinterval(calc('crop_anim_' + caller.name)); );
mod(xpos, frame, xframes);
div(ypos, frame, xframes);
Math.floor(ypos);
mul(xpos, framewidth);
mul(ypos, frameheight);
calc(caller.crop, xpos + '|' + ypos + '|' + framewidth + '|' + frameheight);
trace(scoubidou);
,
<!-- stop the interval when the hotspot gets removed -->
clearinterval(calc('crop_anim_' + caller.name));
);
);
</action>
Thank you so much!
Hi, I pass variables from HTML page to tour.xml and all worked fine with krpano 1.16 & 1.17, I want to switsh to krpano 1.19 but its no more working, the same thing with 1.18 version! It looks like if krpano does not parse viewer.addvariable content in html page !!
Example:
in tour.html I have:
viewer.addVariable("variable1",'value1');
viewer.addVariable("variable2",'value2');
viewer.addVariable("variable3",'value3');
And in tour.xml I use the Get action to have the variables values. I didn't change anything in my xml working with versions 1.16 /1.17!
Thank you for your help
Hi, concerning your editor didn't krpano Editor Plugin do the same except the little viewer where we see the results?!
Hi andrey, I want to add like this textfield on my tour, so please could you share the code? Or may be it is this for sale ?
Thank you
+1
Hope there will be "OnLoaded" function for sounds too !!
Hi, yes I have quicktime installed! May be the problem have something with the system language!
maybe try that page (with the same user agent like when testing krpano):
http://html5test.com/#table-audio
Hi, thanks for your reply! I have 0 score with audio and video elements when testing my safari browser with the mentioned page! Safari version 5.1
Hi I have the same problem!!
Hi,
I used a swf as a distorted hotspot, the problem is that the swf is being cropped and shows just a portion of the original swf. I've found that this problem could be resolved by adding some script with the "setbitmapsize" function on the swf actionscript (see here Topic ).
I have tried using the code example above and the code structure for a krpano Actionscript3 Flash plugin but I didnt come with it, I know nearly nothing about as3 scripting !
Could anyone show me what is exactely the actionscript code I should insert ?
Thank you !
Hi there, could anyone give an advice on the question above ?
Thank you!