Posts by yay

    Hi,

    I've a little problem with a plugin I've done in as3.

    Since the version 1.0.8.14 from the 01 09 2011, my plugin stop working but worked with the 1.0.8.14 rc3.

    It seems to block here :

    Code
    krpano.call( "addplugin(transition_video);" );
    	
    	var transition_video:Object = krpano.get("plugin[transition_video]");
    		
    	krpano.trace(0,transition_video);

    in the rc3 version, the trace gives me : "DEBUG: [object krpano_plugin]" but since the version 1.0.8.14 01 09 2011 it only gives me "DEBUG : " and I can't add properties to my transition_video (I think, the addplugin don't create it but I don't know why)

    It doesn"t work either with the last version 1.0.8.14 from 23 09 2011.

    Someone has an idea why ?

    Thanks

    Yannick

    For more information here are the infos given by the touchpad :

    krpano 1.0.8.14 (build 2011-09-01)
    Flashplayer WEB 10.3.185.46 PlugIn
    isphone = false
    ispad = false
    isandroid = false
    isflash = true
    ishtml5 = false
    isdesktop = true (must be false)
    ismobile = false
    istablet = false (must be true)
    istouchdevice = false (must be true)
    isgesturedevice = false (must be true I think)
    browser.useragent = mozilla/5.0 (hp-tablet; linux; hpwos/3.0.2; u; fr-fr) applewebkit/534.6 (khtml, like gecko) wosbrowser/234.40.1 safari/534.6 touchpad/1.0

    I reply to myself for the ones who are interested,

    I just add a variable in javascript with the user agent and another one saying if istouchpad and add them to krpano into my html page like that :

    Yannick

    Overclocking the tablet to 1.7Ghz make it a bit better moving in the pano but I'm searching a way to detect if the panorama is open in a webos tablet in order to change the mousetype control to drag2D automaticly.

    I've tested all the "device checks" and there"s no difference between my computer and the tablet. Only the flash version is different from the one in my computer. It starts like this 'Flashplayer WEB' against that 'Flashplayer WIN'

    So, is there a way to get that Flashversion in the xml ?

    Thanks

    Yannick

    perhaps, but that's not the question here. I just have that tablet. I don't think it's the tablet that's bad (dual core overclocked at 1.5Ghz), it must be the implementation of flash or webos. Maybe there is an app that works better than the browser by default.

    Hi,

    I tried to load a panorama with the HP Touchpad (running webos)
    It load the flash version but it seems to load the images from the complete panorama and not the images from <tablet> tag (like viewing it from a PC).
    Viewing the panorama is not smooth at all and it's a little tricky to move and zoom in the panorama.

    Is there a way to load the html5 version or have the same utilisation as in the ipad (loading only the <tablet> images and use the pinch to zoom) ?

    Thanks

    Yannick

    That's ok. I found the problem.

    You have to call the swf that way (with the crossdomain.xml on the root of your server):

    Code
    <meta property="og:video" content="http://wisit360.com/krpano/panos/20110702_restau_le_denti_multires/krpano.swf?pano=http://wisit360.com/krpano/panos/20110702_restau_le_denti_multires/resto.xml" />

    Hi,

    I'm trying to embed a panorama into facebook.

    In facebook, I have the play button to load the pano but when I click, I got that error : "FATAL: resto.xml - loading error (Security Error)"

    I've created a crossdomain.xml file and put it on my server (I tried on the path of the resto.xml, on the starting path of the server) but nothing works.

    The html code:

    Using firebug, it seems that facebook looking for http://static.ak.facebook.com/crossdomain.xml and not my crossdomain.xml file.

    Someone has an idea how getting this work ?

    Thanks

    Yannick

    Hi,

    I'm trying to developp a plugin in as3, but I have a little problem.

    In the initialisation of my plugin, I set an onpreviewcomplete event :

    Code
    krpano.set("events.onpreviewcomplete", clear_transition);

    Then I load a new panorama from my plugin.

    The problem is when an onpreviewcomplete event exist in the xml of the new panorama, it replace the one I created in my plugin and never call my function.

    Is there a way to keep the event in the new panorama and add the call of my funcion clear_transition ? I want to do it in my as3 code, and not adding it in the xml.

    I have thought adding an event onxmlcomplete in my plugin that will get the onpreviewcomplete event from the new xml and add my function but, if the onxmlcomplete event exists in the new xml, it will also replace the one from my plugin.

    Thanks

    Yannick