Search results
Search results 1-20 of 148.
Ahh, thanks Klaus. I guess I'll just use another distorted hotspot to call up as a faux-poster once the video is done.
I'm trying to show the posterurl after the video is complete without using an additional plugin or layer. Can you help?
Here's what I've got so far. Just need an action now to make the pieces size and position properly. Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 <textstyle name="textstyle" font="Helvetica" fontsize="14.0" bold="true" italic="false" background="false" backgroundcolor="0x000000" backgroundalpha="0" border="false" bordercolor="0x000000" textcolor="0xFFFFFF" alpha="1.0" blendmode="normal" effect="dropshadow(1,90,0x000000,2,1...
Hey krpanoers, Any ideas on the best way to create this: By using the bg pieces like this: Can showtext do that or would I need to go the textfield.swf route? Thanks!!
Ah yes, doh! Weird indeed.
I've used this successfully. Source code 1 2 3 <events onpreviewcomplete="showintro(); set(events.onmousedown,onviewhide()); set(events.onkeydown,onviewhide()); copy(cur_fov,view.fov); copy(cur_hlookat,view.hlookat); copy(cur_vlookat,view.vlookat);" /> Your problem may have something to do with attaching set(fullscreen,true); to an event rather than a button. Not sure though...
Perhaps you should post a helpful "default settings" suggestion in the Feature Requests thread.
Something that would be incredibly useful for me would be to see the ath & atv of a hotspot while I'm moving it around with the editor. Would be even better if I could click a button beside the hotspot labeled "copy position" and it would copy the code below to my clipboard. Then I could just plug it in to my main xml quickly. Source code 1 ath="-43.755537384222635" atv="10.98443149162949"
Zephyr is definitely a KR guru. Hire him for sure. Hopefully I'll have some work to send him soon.
Is your syntax correct? Shouldn't it be like this. Source code 1 set(events.onmousedown, set(fullscreen,true); set(events.onmousedown, null); );
You can easily create your own default settings for your panos.
How would I change <image url> in the code below. Something like this, but this doesn't work Source code 1 set(plugin[gallery:thumbstrip].image[0].url, newurl.jpg); See actual working plugin code here. Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 <plugin name="gallery" devices="flash" url="../assets/gallery.swf" xmlurl="chesed.xml" keep="true" align="topleft" visible="true" handcursor="false" zorder="50" x="0" y="160" showing="true" > <thumbstri...
ah good to know, thanks again!
Tried using <include url="base.xml" /> and it throws an error on my iPhone. "base.xml - xml parsing failed" Is this not supported? I didn't see it listed in the unsupported functionality section on the site.
Ah (get)! simple mistake, thanks!
Have any ideas why "zoomto(curfov,smooth());" is not working. The variable curfov isn't getting passed. I've dug through a bunch of variable, dereferencing, etc. threads and haven't come up with a good way to solve this. Source code 1 2 3 4 5 6 7 8 9 10 11 12 <hotspot onclick="openmodal" /> <action name="openmodal"> set(curfov,get(view.fov)); looktohotspot(get(name), %1, smooth(800,800,800)); set(plugin[modalclose].visible, true); </action> <action name="closemodal"> set(plugin[modalclose].visib...
Oh, wait. Now it's working! Perhaps I didn't refresh. Thanks Zephyr!
If I try below, it comes up as undefined Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 <hotspot name="hs" url="hs.png" keep="false" ath="-15" atv="-23" onclick="openmodal();" /> <action name="openmodal"> looktohotspot(get(name), 25, smooth(800,800,800)); js(modalopen(get(name))); set(plugin[modalclose].visible, true); </action> js Source code 1 2 3 function modalopen(hotspotID) { alert(hotspotID); }
Well I need the name of the hotspot to become my JS var hotspotID. Trying to set hotspotID with the current hotspot[name].