Klaus,What's left for the final 1.0.8 version:
- videoplayer plugin (will follow in the next days)
- 3D distorted hotspots
- optional automatic flash9/flash10 switching for best performance on all systems
- others fov types (hfov,vfov,dfov,mm,zoom)
- more customizable progressbar
- encrypted external images
- add the "keep multires level" option again
- adjustable sharpen effect
- controllable filters/effects (glow,shadow,blur...) for plugins/hotspots
- new mouse control mode
- cylindrical QTVRs
- complete new editor with much more possibilities
- updated and new plugins
- finished kprotect tool
- kprotect command line tool
- linux versions of the tools
- docu / examples
- updated website
- ...?
(for my website interface) !This post has been edited 1 times, last edit by "sagedavid" (Apr 9th 2009, 11:25am)
Beginner
Location: Oslo, Norway
Occupation: digital artist, production designer, architect, photographer
Klaus,
I just want to revive this topic : How camera without to click mouse button.
I'm very interested in this(for my website interface) !
Regards,
David
Edit : maybe is it the "new mouse control mode" ? Great !

|
|
Source code |
1 2 3 4 5 |
<action name="test"> set($vara,90); trace($vara); tween(hotspot[sphere1].ath,$vara); </action> |
this is planed for the 1.0.9 release, it's not difficult not needs some other things done first,The possibility to embed krpano.swf in another Flash or Flex application isn't plan for 1.0.8 ?
This is difficult to program ?
the "$" is the special flag for the tween() action to identify a variable,I'm playing around again with the tweens... and the tween to $var doesn't seem to be working.
<action name="test">
set($vara,90);
trace($vara);
tween(hotspot[sphere1].ath,$vara);
</action>

|
|
Source code |
1 2 3 |
set(vara,90); trace(vara); tween(hotspot[sphere1].ath,$vara); |
Hi,It seems to be possible to code complex tours now with the only use of your xml-interface. No need to have actionscript in mind (for many tour-programmings)?
What is the borderline - any experience or advices when to leave single xml-scripting for adding actionscript and what to leave inside xml?
yes, that's plannedFor me scripting is what i got with fpp (OK, it´s a little bit more...) but, Klaus, what You´ve done for us with krpano is MUCH more:
Having tools like user defined variables, conditional actions ("if...") and all other features krpano is in between scripting and programming. And more and more it grows to a complete set of programming commands that could superfluous the need of as3 for this particular case of assembling panos to a perfect tour...
On the other hand there are some things missing to reach out for this:
Beside conditions one would for instance need loops too (eg. "for-next" ...) and may be some other basics more.
Do you have plans for this direction of development in future?
that's interesting! what is a "huge amount of data" ?re-develop my personal portfolio site to be based on krpano player. Found some bugs in 1.0.8 beta 7
1. When I load huge amount of data into player, sometimes I get error (in Mozilla, Safari and Chrome, but no in IE)
TypeError: Error #1009: Cannot access a property or method of a null object reference. at kflashpano::Kloader/loader_complete()

how and where do you call showtext?2. Function showtext(). I escape-coded all special characters to hex code, double-checked XML and see , instead of "," but got error "bla-bla-bla textstyle is not found" on phrases after ,
|
|
Source code |
1 |
set(plugin[..].onhover, showtext(test %%2C test) ); |
|
|
Source code |
1 |
set(plugin[pFocus].x,plugin[%1].x) |
|
|
Source code |
1 |
copy(plugin[pFocus].x,plugin[%1].x) |

|
|
Source code |
1 2 3 4 5 6 7 |
<data name="scTitel_01"> Das ist das erste Panorama </data> <data name="scTitel_02"> Das ist schon das nächste... </data> |
|
|
Source code |
1 2 3 |
showtext(data[scTitel_01].content, textstyle) or showtext(get(data[scTitel_01].content), textstyle) |

|
|
Source code |
1 |
set(hotpot[spot1].onhover, showtext(......) ); |
|
|
Source code |
1 |
copy(hotpot[spot1].onhover, data[scTitel_01].content); |
This error appear not always. Probably at first run in mozilla-based browsers.that's interesting! what is a "huge amount of data" ?![]()
do you dynamically adding and removing plugins or hotspots?
can you show the example where this happens?
page: http://www.360pano.eu/all/index1how and where do you call showtext?