Posts by Makooze

    Hi Klaus,

    danke, das ist genau das was ich gesucht habe. Jetzt will ich noch das das ganze Fullscreen ist und die Pfeile links und rechts weg sind.
    Das muss ich wahrscheinlich über die config-files steuern bzw. im xml selbst, oder? Ich werds mir nachher mal ansehen.

    Gruss,
    Makooze

    Quote


    Nice panoramas but I agree the navigation is very confusing. Most normal visitors will never discover more tan the initial 5 panoramas.
    And you really need a fullscreen button. We can figure out to use the right click option but 99 % of the normal users will never find it.

    Now when I think about it, you may be right. The interface it not very self-explaining.
    We decided to add an info-button (popup same explaination) and a fullscreen-button soon.

    Thanks for your helping comments.

    Makooze

    Well, I'm not quite sure if we talk about the same thing. Fact is that the size of images used as input for krpano is 8192x4096.
    I do thing that you mean this by export, don't you?

    Due to performance and data reasons we scaled down the size of the images to 1024x1024 for a cube face.
    Therefore we have 6 cube faces for each panorama with option tilesize=1024 and level=1.

    Code
    <image type='CUBE' multires='true' tilesize='512' />
        <level tiledimagewidth='1024' tiledimageheight='1024'/>
    
    
        ...


    For the Ipad you are right, the size is fix to 1024x1024 for a cube face.
    And we also have the 6 cube faces for each panorama as above.

    Hi everybody!

    I'd like to show our latest virtual tour. It's a tour for the Kameha Grand Hotel in Bonn (Germany).

    The tour itself consists of 30 panoramas and each panorama was taken as a hdr to allow extensive editing.

    The tour also works on IPhone/IPad even though with a limited functional range.

    Thanks for your remarks.

    Here is the direct link to the tour:
    http://www.virtual-panorama-tours.de/references/kameha/index.php

    Hi everybody,

    within a plugin I'd like to figure out when a panorama is completely load.
    Therefore I access the variable progress with:

    Code
    var progress:* = krpano.get("progress");

    The first time I access the progress-variable everything is fine,
    but when I try to check, for example, progress.loaddone in a while-loop
    the variable is not reloaded.

    Code
    var progress:* = krpano.get("progress");
    while(!progress.loaddone)
    {
     	progress = krpano.get("progress");
    }

    What am I doing wrong?

    Markooze

    I want to load a picture via a file and then center it in the pano.
    As I don't the dimension of the specified picture I need to calculate
    width and height, then set the new dimension of the plugin.

    I did try the code:

    Code
    plugin = krpano.get(plugin_path);
     plugin.y = 150;
    
    
    krpano.trace(krpano_as3_interface.DEBUG, "plugin.y -" + plugin.y); 
    -- Output y=150

    But it didn't have any effect on the display.
    How do I make changes effective?

    Btw., the change of variable y was just an example.

    Hello,

    I'm trying to set/modify a variable of the plugin from within the plugin.
    Somehow it does not have any effect.

    So far I tried to set a variable with the call-function:

    Code
    krpano.call("set(" + plugin_path + ".y, +150);");

    and with the set-function:

    Code
    krpano.set(" + plugin_path + ".y, +150);");

    I even tried the function updatescreen() and invalidatescreen() after setting the variable.

    Can anybody tell me how to do this?

    Greetz,
    Makooze

    Hi everybody,

    seems that nobody had ever wanted to access data this way.
    I found on the other hand the <data>-element that should also work for me.
    But I just can't get it to work.

    Here is what I got so far:

    In my as3-plugin code I tried to access the data with the following line:

    Code
    var data:Object = krpano.get(data[plugin_object.data].content);
    krpano.trace(krpano_as3_interface.DEBUG,"data() - " + data);

    It does not work. Even the trace prints nothing in the krpano console.

    Thanks for your help
    Makooze

    Hello everybody,

    I was wondering if it is possible to define and access subelements in the plugin-element.
    In the documentation there is no example and no hint. If it is possible, how do I access
    the element from the plugin (Actionscript-Code).

    Example from the docs:

    Code
    <plugin name="logo" 
    	url="krpano_logo.png" 
       align="rightbottom"  
       x="10" 
       y="10" 
    />


    I want this:

    Code
    <plugin name="logo" 
       url="krpano_logo.png" 
       align="rightbottom" 
       x="10" 
       y="10">
       <data>
     	<entry id="id_1" descr="blah"/>
     	<entry id="id_2" descr="blub"/>
       </data>
    </plugin>

    The reason is that I don't want to load an external file.

    Any idea?
    --
    Makooze

    Hello,

    I'm new in plugin programming for krpano and I discovered a behaviour I can't explain.
    My plugin I' m writing on is a galary menu to navigate between the panoramas. Now I
    want to be able to set the size of the menu via width and heigth attributes for the plugin.

    Everything works fine so far, but it seems now that when I set the width greater than half
    the stagesize krpano internally reduces the size to max. half the stagesize. Is this a feature
    or am I doing something wrong.

    Greetz,
    Makooze