This is a great collection of some of your work.
Your ToolBox is one of my favorites that I use all the time.
Thank you for sharing,
Phil
Posts by Phil
-
-
Which browser were you using? Here's a patch that will fix issues in Edge and Chrome. https://krpano.com/forum/wbb/inde…77212#post77212
I'm now seeing an issue with Firefox on touch screens where it won't pan or zoom.
Phil
-
Is there a workaround for Firefox? On my laptop touchscreen I can't pan or zoom. This fix above worked for Chrome but not FF.
Thanks,
Phil -
Virtual Tour Pro has been my favorite since I began using it with the Samsung Note 4. Now using it on a Note 8. Runs any krpano project like an app.
https://play.google.com/store/apps/det…tualworld.vtpro
There is also a free version which works 100% but has an extra screen in the beginning. I like the cleaner Pro version.
-
Doesn't the KRPano examples folder do what you're trying to do with the viewer folder inside?
-
-
-
Is the 2 edition available to download or buy?
-
-
I have a project using a distorted hotspot and I've noticed that it's only work with html5. When the browser is using Flash, the hotspot won't turn on. Tested in Chrome and FF with the same results.
Here's a simple example where clicking on the + turns on the hotspot in html5 but not in Flash.
Flash: http://360photopro.com/hotspot-test/index.html?html5=only
HTML5: http://360photopro.com/hotspot-test/index.html?flash=only
XML: http://360photopro.com/hotspot-test/tour.xml
Zipped project (778kb): http://360photopro.com/hotspot-test/hotspot-test.zip
Can anyone see where I'm making a mistake?
Thanks,
Phil -
In tour.xml change the value of controlbar_offset="0" to move the control bar out of view. Maybe -20? Later when your more comfortable in editing the vtourskin.xml file, you can remove the code for it.
-
(Windows-only)
Will a MAC version be availble soon?
-
Thanks for checking.
-
I'm having an issue with pop up images being blurred when viewing on an Andriod phone, default browser. Everything is fine in the Chrome mobile browser and desktops. What am I missing?
Thanks,
PhilExample & code http://360photopro.com/pop-up/
Code<krpano> <!-- use only a grid preview pano (to save download space) --> <preview type="grid(cube,16,16,512,0x121212,0x000000,0x121212);" details="16" /> <!-- view settings --> <view hlookat=" " vlookat=" " fov="100" /> <hotspot name="hs1" bgborder="0" keep="false" visible="true" enabled="true" handcursor="true" capture="true" children="true" zorder="0" fillcolor ="0xffff00" fillalpha ="0.00" borderwidth ="1.0" bordercolor ="0xffff00" borderalpha ="0.20" fillcolorhover="0xffff00" fillalphahover="0.10" borderwidthhover="2.0" bordercolorhover="0xffff00" borderalphahover="0.70" fadeintime="0.150" fadeouttime="0.300" fadeincurve="1.100" fadeoutcurve="0.700" details="8" onover="" onout="" ondown="" onup="" effect="" flying="0" inverserotation="false" usecontentsize="false" onhover="showtext(Click me);" onclick="flyout();" > <point ath="-21" atv="21" /> <point ath="-21" atv="-21" /> <point ath="21" atv="-21" /> <point ath="21" atv="21" /> </hotspot> <plugin name="pic" url="pic.jpg" width="1000" height="466" zorder="2" align="center" edge="center" alpha="0" scale="0" onhover="showtext(Click to close);" onclick="flyback();" /> <action name="flyout"> tween(plugin[pic].alpha,1,1); tween(plugin[pic].scale,1,1); </action> <action name="flyback"> tween(plugin[pic].alpha,0,1); tween(plugin[pic].scale,0,1); </action> </krpano> -
I'm noticing that videos won't play in HTML5. In the index file when html5:"prefer" is making the desktop browser to use html5 I receive the following error.
ERROR: video/video-name.mp4 - loading video failed!
This is using the multiple video formats. videourl="video/video-name.mp4|video/video-name.flv|video/video-name.webm|video/video-name.3gp"
I see the same error using the video hotspot example too. Running W7 with the latest Firefox, Chrome and IE browsers.
What's the secret to getting videos to play in html5???
Phil
-
I'm trying to get a video to play center screen independent of the panorama. Using the video-hotspot example from the krpano download, how can the video play in the center screen and not move? I haven't found any examples of this in the forum.
Code from the krpano example.
Code
Display More<krpano version="1.16"> <!-- use only a grid preview pano to save download space --> <preview type="grid(cube,16,16,512,0xCCCCCC,0xFFFFFF,0x999999);" details="16" /> <!-- note - the url of the video must be always relative to the main krpano swf file --> <hotspot name="videospot" url="%SWFPATH%/plugins/videoplayer.swf" alturl="%SWFPATH%/plugins/videoplayer.js" videourl="%SWFPATH%/examples/plugin-examples/video-hotspot/cats-short.m4v|%SWFPATH%/examples/plugin-examples/video-hotspot/cats-short.ogv|%SWFPATH%/examples/plugin-examples/video-hotspot/cats-short.webm" posterurl="%SWFPATH%/examples/plugin-examples/video-hotspot/poster.jpg" distorted="false" ath="0" atv="0" edge="center" scale="1.0" rx="0" ry="0" rz="0" loop="true" pausedonstart="true" directionalsound="true" range="200" volume="0.7" onclick="togglepause();" /> </krpano>Thanks,
Phil -
Anyone success to mix / intergrate SWFaddress plugin with Krpano Vrtourskin Droplet ? .. well kinda have few coding required to mix both script.. :)
Hi Bulp...any success using this with a droplet? I'll be purchasing the plugin in a few weeks once I complete a few projects.
Phil
-
Hmmm...this only works with a single scene and the hotspots will turn back on when loading a new scene. What would need to be changed for it to work across multiple scenes? Can a hotspot use an If statement like this? visible="if(state=1,true,false);"
Is this what you want to achieve?
Link to example
CodePhil
-
That's exactly what I wanted to achieve. Using your example and replacing backgroundcolor EQ '0xffffff' with tag == img it works perfect.
Codeonclick="for(set(i,0), i LT hotspot.count, inc(i),if(hotspot[get(i)].tag == img, switch(hotspot[get(i)].visible,false,true)););"Thank you for your help!

Phil
-
Piot,
Thank you for that example! It's exactly what I needed. I was close on a few of my attempts finding many ways not to do it.
Phil