Wonderful job! Modernity requires new solutions - this will be one of those :)
Posts by Konstantine
-
-
Yes, but what about the nwjs-0.50.1 version?
Is that one NOT working on your system? (because that would be a bit strange)
Unfortunately, it doesn't work. Most likely, this is exactly the problem of a particular system - just I can't guess which one. -
I'm asking because I would like to choose the NWJS version that works for the most systems.
Yes, this one works - krpano-1.20.10-nwjs-0.50.0-b1 (which you kindly showed earlier in the forum thread) Video card - Nvidia GeForce GTX 1660 -6 Gb (i7 + 32 RAM) - if it important. In the version that is on the main page - I can see it in the Manager, but I do not see it in work.
Is there anything else I could help you with? Maybe it's just my dorky old computer not working well ... :) -
Thanks for reporting, but is now only that particular version working for you or are both versions working?
So far, only this one works - krpano-1.20.10-nwjs-0.50.0-b1. I once again downloaded the official one from the Download section, rebooted the computer, but the situation is the same - there is a program in the Task Manager, but I do not see any reaction to the launch visually :( -
In Chrome 94 (64 bit), photo enlargement works. I also checked Safari and Mozilla - also the zoom works well.
-
Once with NWJS 0.50.0-beta1 (Chromium 87 / Node.js v15.0.1) - the same as in 1.20.9:
Edit: file removed, the main version got updatedThis version worked in Win 7 Pro - everything started! Thanks and best wishes !!
-
I can't see them in the Task Manager
In my case, every time I start the application, it stays in the Manager. There may be a lot of them ...
-
Win 7 prof - no start. None of the executable files just run. But I can see them in the Task Manager.
-
You can check your luck! :)) Made and visualized very cool!
-
Great job! A good addition to Combobox plugin - I really wanted to have such an addon!
-
Great fun! Like many complex things it looks like simple. But very difficult indeed! Worth trying!
-
Hi!
Now I see what Bing Map does not show signatures to objects on the map. No in any mode. API key is available. Could this situation be because the key is not correct? But I got it in the usual way on the Microsoft website.
Is this some kind of my mistake or ...? I tried other keys, but nothing changes.
At the same time, I saw a tour that was made using an earlier version of Krpano - it has signatures on the map.
My tour is done on the latest version of Krpano. -
Useful! Very much saves time! You can focus on panoramas, for those who do not really want or do not know how to be a progammer.
-
Very interesting plugin! And very useful.
I was lucky enough to participate in process of creation and testing. Everything works as stated. And it is very convenient. There is no need to write many lines of code if there are many scenes and hotspots. If you want to insert many images, you can put them in WYSIWYG mode - is very quickly and correctly. I also thought it was important. The plugin works with html and video windows - it's cool and modern! -
Hallo! Und wie hast du das Video mit Samsung Gerar 360 ? Bei mir ist es sehr groß -2 Minuten minimal 80 MB erhalten und funktioniert deshalb nicht. Wie kann ich die Größe des Videos reduzieren, um die Qualität nicht zu verlieren?
-
It's possible. And not only swf (so better not to do). You need to use a plugin for FB Static Tabs from WOOBOX.
-
I also searched for it for a long time, but I found only very old references to jsborder. I tried to collect a tour in version 1.18.5 - it did not help.
And how can I draw a frame around pictures? To make a white rectangle under each one is probably not a good idea, it's too difficult, I think .... -
There is a great example - https://krpano.com/examples/10815…ingut/tour.html.
I made a tour, just like this example. But in example there are frames around the thumbnails. And in my version - no.
Although, everything is written exactly same.
Here is my codeCode
Display More<action name="buildthumbs" > if(%1 != NEXT, set(i,0)); if(i LT scene.count, copy(thumb, scene[get(i)].thumburl); txtadd(thumbname,'thumb_',get(i)); addplugin(get(thumbname)); set(plugin[get(thumbname)].url, get(thumb)); set(plugin[get(thumbname)].keep, true); set(plugin[get(thumbname)].align, lefttop); set(plugin[get(thumbname)].width, 60); set(plugin[get(thumbname)].height, 60); set(plugin[get(thumbname)].x, 10); set(plugin[get(thumbname)].y, 10); mul(plugin[get(thumbname)].x, i,1); mul(plugin[get(thumbname)].y, i,1); add(plugin[get(thumbname)].x, 5); add(plugin[get(thumbname)].y, 5); copy(plugin[get(thumbname)].xsmall, plugin[get(thumbname)].x); copy(plugin[get(thumbname)].ysmall, plugin[get(thumbname)].y); add(plugin[get(thumbname)].zorder, 100, i); set(plugin[get(thumbname)].effect,glow(0xFFFFFF,3,15,20)); set(plugin[get(thumbname)].jsborder,'50px solid #FFFFFF'); copy(plugin[get(thumbname)].thumbpos, i); set(plugin[get(thumbname)].thumbtitle, get(scene[get(i)].title)); set(plugin[get(thumbname)].linkedscene, get(scene[get(i)].name) ); set(plugin[get(thumbname)].onclick, openthumbs() ); set(plugin[get(thumbname)].devices, all); set(plugin[get(thumbname)].onhover, showtext(get(thumbtitle)) ); inc(i); buildthumbs(NEXT); ); </action> <action name="openthumb"> if(%2 != NEXT, set(pos,0); copy(curpos, plugin[%1].thumbpos); set(xdst, 0); set(ydst, 0); ); if(pos LT curpos, inc(pos); inc(xdst,130); sub(xmax, stagewidth, 500); if(xdst GT xmax, inc(ydst,130);set(xdst,0); ); openthumb(%1,NEXT); , add(xdst,5); add(ydst,5); tween(plugin[%1].x, get(xdst) ); tween(plugin[%1].y, get(ydst) ); tween(plugin[%1].width, 120); tween(plugin[%1].height, 120); ); </action> <action name="closethumb"> tween(plugin[%1].x, get(plugin[%1].xsmall)); tween(plugin[%1].y, get(plugin[%1].ysmall)); tween(plugin[%1].width, 60); tween(plugin[%1].height, 60); </action> <action name="openthumbs"> if(%1 != NEXT, set(i,0); set(events.onclick, set(events.onclick,null); delayedcall(0.1, closethumbs() ); ); ); if(i LT scene.count, txtadd(thumbname,'thumb_',get(i)); openthumb(get(thumbname)); set(plugin[get(thumbname)].onclick, set(events.onclick,null); closethumbs(); loadscene(get(linkedscene),null,MERGE,BLEND(1)); ); inc(i); openthumbs(NEXT); ); </action> <action name="closethumbs"> if(%1 != NEXT, set(i,0)); if(i LT scene.count, txtadd(thumbname,'thumb_',get(i)); closethumb(get(thumbname)); set(plugin[get(thumbname)].onclick, openthumbs() ); inc(i); closethumbs(NEXT); ); </action>
I guess the problem is in these lines, but everything is exactly the same as in the example.
Codeset(plugin[get(thumbname)].effect,glow(0xFFFFFF,3,15,20)); set(plugin[get(thumbname)].jsborder,'50px solid #FFFFFF');
Second day I can not understand what I did wrong.
-
It's very cool now! In the gallery you can see a YouTube video and it is made nicely. You can also make sure that there are only a few YouTube videos on different topics in a gallery (and there can be many different Videos). It's very nice!
-
This is a very interesting plugin! It is good because it allows you to see through a circle. At least!
Thank you very much for what he is!
But I had some problem when I using plugin. When using a FLAT panorama as a first one, panorama "flies"very quickly during transition to hotspot. I tried to change this parameter (minimise smooth. Ex. smooth="10, -10, 20") here:onclick="if(name != @selected_hs,
select_hs(get(name));
looktohotspot(get(name),get(view.fov));
,
set(enabled,false);
select_hs();
lookto(get(hotspot[get(name)].ath),get(hotspot[get(name)].atv),get(view.fovmin),smooth(100,-100,120),true,false);
WAIT();
onclick2());"
onclick.desktop="
set(enabled,false);
lookto(get(hotspot[get(name)].ath),get(hotspot[get(name)].atv),get(view.fovmin),smooth(100,-100,120),true,false);
WAIT();
onclick2();"/>in this case, transition in a first panorama becomes normal. But! In all other panoramas, the transitions on hotspots become very, very slow. Did I make a mistake? Maybe this problem is solvable?
That is my example - http://360sfera.ru/ravda_air/ravda.html