Posts by rbackhaus

    Klaus,.
    I just started searching for a soultion for this as well

    For the above he can eliminate the stop all sounds in the new pano to keep the sound from stopping,..and that may be OK in a smaller tour with few sounds, ..in a complicated tour this will run into problems....can you or someone help with the code for a tour with multiple nodes and multiple sounds. This is needed where a sound "a" will be used multiple times in a tour, in conjuction with other sounds, but it some instances it will be desired to have sound "a" run continuous when moving to a new node. Is there way to ...........use the if or if not to solve this,maybe in an action, kinda like below where "A" is our desired sound

    if sound 'A" is not playing, then (stopalllsounds),playsound(A,,,,); in this instance, if "a" is playing, and it is still wanted, it will continue to do so(with elimination of the playsound command),.....if "A" is not playing then the sound needed willl be called while stopping any unwanted sound.

    Maybe this has been explained before,..please direct if it has,........like i said i just started searching.

    Rob

    hey guys,

    Doug I'd like to see your example if you don't mind,....

    I've tried hit and miss,..but when I was successful I found that it screwed up the functionality when viewed on the iphone.

    Does your work on the iphone or was that not your intent,..it seems any layer editing I do to the the html screws up iphone functinality,..to add,.. a coder I'm not.

    Rob

    VN,

    nice,...much cleaner,.like the filters.nice efforts,..AGAIN.. If I need help I'll' give you a buzz

    my 2 cents

    I'd use a "red" x, and bigger(x) to close the plugins(filters),..easier for your users to see,...and maybe have them slide left to close and reopen with a tab to slide back open,..users may not find/discover the bottom buttons to reopen what they close up top

    I'd force to open full screen initally,..heck your 90% there anyway.

    I dont like the green,....sorry,.. a soft gray with some black, i saw something somewhere,...if I find it I'll forward it.

    Try to incoporate some kind of social booking mark,..facebook, addthis etc

    Start with some filters "ON" so users will see the SOME of the hotspots and hopefully come to understand the filter menu as they will all be newbies

    adjust/set your text on hover,.....eg superior water,..the text covers your company icon

    upon reopening the controls,..I wouldn't reopen everything,....if they were able to discover that they can close the controls,..they'll figure out the rest of your interface,...esp if you use side tabs for the the filters/map

    looking good,..


    Rob

    thanks klaus,

    ..but no help,.....the same problem that I mentioned to you,...

    the png div image IS there,...when the screen is minimized, I can preview the minimized screen at the bottom of my window and see the png div image there, and it is correctly displayed over the player ..... but once I click to open the window it promply falls back behind the the player. In previous trys this same code seem to work with safari phone browsers,..my guess is its something with the javascript as it will work if the the script is removed and only the noscript embed command is used,...any thoughts
    rob

    entering a z-index in the script tags enables the DIV(blue2png) to appear,..but then the pano fails to show,....any help direction would be apprec.,,,,as I am not that familiar w scripts
    Rob


    <script>
    embedpano({target:"panoDIV",swf:"g.swf",width:"100%",height:"100%",allowFullScreen:"true"});
    </script>


    also trying with this code,..no luck

    <!DOCTYPE html>
    <html>
    <head>
    <title>krpano.com - swfkrpano.js example</title>
    <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <style>
    html { height:100%; }
    body { height:100%; overflow: hidden; margin:0; padding:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; color:#FFFFFF; background-color:#000000; }
    a{ color:#AAAAAA; text-decoration:underline; }
    a:hover{ color:#FFFFFF; text-decoration:underline; }
    </style>
    </head>
    <body>

    <div id="panocontent" style="width:100%;height:100%;z-index:-1;wmode:transparent;">
    <noscript><table style="width:100%;height:100%;z-index:-1;wmode:transparent;"><tr style="valign:middle;"><td><div style="text-align:center;">ERROR:<br/><br/>Javascript not activated<br/><br/></div></td></tr></table></noscript>
    </div>

    <div style="position: absolute; width: 100px; height: 100px; z-index: 1090; wmode: transparent; left: 1024px; top: 234px" id="layer1">
    <img border="0" src="blue2.png" width="120" height="120"></div>

    <script src="swfkrpano.js"></script>

    <script>

    var viewer = createPanoViewer({swf:"g.swf"});
    viewer.addVariable("xml","g.xml");
    viewer.embed("panocontent");
    viewer.addParam("wmode,transparent");
    </script>

    </body>
    </html>

    I'm trying to use this code to get a div object(blue2png) over player, i've changed the wmode to transparent, no luck though...any one else accomplish this or have ideas, thanks
    rob


    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
    <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    <style>
    html { height:100%; }
    body { height:100%; overflow: hidden; margin:0; padding:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; color:#FFFFFF; background-color:#000000; }
    a{ color:#AAAAAA; text-decoration:underline; }
    a:hover{ color:#FFFFFF; text-decoration:underline; }
    </style>

    </head>
    <body>
    <div style="position: absolute; width: 100px; height: 100px; z-index: 2; left: 1191px; top: 389px" id="layer1">
    <img border="0" src="blue2.png" width="120" height="120"></div>

    <script src="swfobject/swfkrpano.js"></script>
    <div id="panoDIV" style="height:100%;">
    <script>
    embedpano({target:"panoDIV",swf:"g.swf",width:"100%",height:"100%",allowFullScreen:"true"});
    </script>
    <noscript>
    <div id="tour">
    <object width="100%" height="100%">
    <param name="wmode" value="transparent">
    <embed src="g.swf" width="100%" height="100%" wmode="transparent" allowFullScreen="true">
    </embed>
    </object>
    </div>
    </noscript>
    </div>
    </body>
    </html>

    tuur,

    thanks,...


    but i dont think that was my problem,......i think i had 2 issues,....one i had an altscale tag TWICE,..two i dont think my tablet files were fully loaded up on the server for that node,..alls well now

    rob

    <krpano version="1.0.8">
    <!--************** Panorama *******************************************************************-->
    <!--@File="harb9.xml" @PanoName="Hall" @FilePath="C:/Users/eve/Desktop/harborside/hall.jpg"-->
    <panoview h="-25.9" v="2.17" fov="65"/>
    <!-- view parameters -->
    <view fisheye="0" limitview="lookat" vlookatmin="-90" vlookatmax="90" fovmin="1" fovmax="90" fov="65" hlookat="-25.9" vlookat="2.17"/>
    <progress showload="none" showwait="none"/>
    <autorotate horizon="2.17" tofov="65"/>
    <!-- preview image -->
    <preview url="harbdata/harb9/preview.jpg" type="CUBESTRIP" striporder="FRBLUD" details="16"/>
    <!-- the pano itself -->
    <image type="CUBE" multires="true" tilesize="709" baseindex="0">
    <level tiledimagewidth="1418" tiledimageheight="1418">
    <left url="harbdata/harb9/3/1/%v_%u.jpg"/>
    <front url="harbdata/harb9/0/1/%v_%u.jpg"/>
    <right url="harbdata/harb9/1/1/%v_%u.jpg"/>
    <back url="harbdata/harb9/2/1/%v_%u.jpg"/>
    <up url="harbdata/harb9/4/1/%v_%u.jpg"/>
    <down url="harbdata/harb9/5/1/%v_%u.jpg"/>
    </level>
    <level tiledimagewidth="709" tiledimageheight="709">
    <left url="harbdata/harb9/3/0/%v_%u.jpg"/>
    <front url="harbdata/harb9/0/0/%v_%u.jpg"/>
    <right url="harbdata/harb9/1/0/%v_%u.jpg"/>
    <back url="harbdata/harb9/2/0/%v_%u.jpg"/>
    <up url="harbdata/harb9/4/0/%v_%u.jpg"/>
    <down url="harbdata/harb9/5/0/%v_%u.jpg"/>
    </level>
    <!--mobile phone / iphone images-->
    <mobile>
    <left url="harbdata/harb9/3/mobile_face.jpg"/>
    <front url="harbdata/harb9/0/mobile_face.jpg"/>
    <right url="harbdata/harb9/1/mobile_face.jpg"/>
    <back url="harbdata/harb9/2/mobile_face.jpg"/>
    <up url="harbdata/harb9/4/mobile_face.jpg"/>
    <down url="harbdata/harb9/5/mobile_face.jpg"/>
    </mobile>
    <!--tablet pc / ipad images-->
    <tablet>
    <left url="harbdata/harb9/3/tablet_face.jpg"/>
    <front url="harbdata/harb9/0/tablet_face.jpg"/>
    <right url="harbdata/harb9/1/tablet_face.jpg"/>
    <back url="harbdata/harb9/2/tablet_face.jpg"/>
    <up url="harbdata/harb9/4/tablet_face.jpg"/>
    <down url="harbdata/harb9/5/tablet_face.jpg"/>
    </tablet>
    </image>
    <!--************** Hotspots and lensflares ***************************************************-->
    <hotspot name="spot13" hview="44.63" vview="-1.3" fovview="65" hcenter="-102.943" vcenter="0.604027" onclick="action(closeglobalobjects);set(plugin[data].autorotate,get(autorotate.enabled));set(autorotate.enabled,false);ifnot (stopSequence === undefined,action(interruptAnimation););lookto(get(hcenter),get(vcenter),get(view.fovmin),smooth(400,20,100));loadpanorama(harb2.xml,null,null,BLEND(1));lookat(get(hview),get(vview),get(fovview));wait(blend);lookto(get(panoview.h),get(panoview.v),get(panoview.fov),smooth(100,20,50));set(autorotate.enabled,get(plugin[data].autorotate));" url="harbdata/graphics/spots/spot0.png" onhover="showtext(To full bath one);" ath="257.057" atv="0.604027"/>
    <hotspot name="spot14" hview="53.3" vview="1.3" fovview="65" hcenter="-37.9264" vcenter="4.22819" onclick="action(closeglobalobjects);set(plugin[data].autorotate,get(autorotate.enabled));set(autorotate.enabled,false);ifnot (stopSequence === undefined,action(interruptAnimation););lookto(get(hcenter),get(vcenter),get(view.fovmin),smooth(400,20,100));loadpanorama(harb3.xml,null,null,BLEND(1));lookat(get(hview),get(vview),get(fovview));wait(blend);lookto(get(panoview.h),get(panoview.v),get(panoview.fov),smooth(100,20,50));set(autorotate.enabled,get(plugin[data].autorotate));" url="harbdata/graphics/spots/spot0.png" onhover="showtext(To full bath two);" ath="322.074" atv="4.22819"/>
    </krpano>

    here's what i'm using

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
    <title>Harborside</title>
    <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    </head>
    <body>
    <script src="swfobject/swfkrpano.js"></script>
    <div id="panoDIV" style="height:100%;">
    <script>
    embedpano({target:"panoDIV",swf:"itest.swf",width:"100%",height:"100%",allowFullScreen:"true"});
    </script>
    <noscript>
    <div id="tour">
    <object width="100%" height="100%">
    <embed src="itest.swf" width="100%" height="100%" allowFullScreen="true">
    </embed>
    </object>
    </div>
    </noscript>
    </div>
    </body>
    </html>