Search found 20 matches

by RBrooks
Thu Sep 06, 2012 5:27 pm
Forum: Pano2VR/Object2VR Skins
Topic: hotspot template questions
Replies: 7
Views: 5938

Re: hotspot template questions

oddly enough my hotspots appear to be setup correctly, just simply not showing the text. the hand cursor is working now however.
by RBrooks
Thu Sep 06, 2012 4:08 pm
Forum: Pano2VR general
Topic: using javascript api to communicate with flash pano
Replies: 1
Views: 2147

Re: using javascript api to communicate with flash pano

I'm trudging through this myself, but it doesn't appear to be calling getPan(). It's calling document.pano.isComplete();alert(a);return false;

Did you ever get this to work?
by RBrooks
Wed Sep 05, 2012 4:52 am
Forum: Pano2VR general
Topic: javascript api
Replies: 3
Views: 2336

Re: javascript api

is there an alternate link for http://gardengnomesoftware.com/pano2vr_sample.php?demo=parkjs as it's returning a file not found. I tried to test and add <a onClick="pano.stop();pano.setPan(46);pano.setTilt(0);" href="#">Jump To -100,-50</a> as is called in the documentation, thou...
by RBrooks
Wed Sep 05, 2012 12:51 am
Forum: Pano2VR general
Topic: javascript api
Replies: 3
Views: 2336

Re: javascript api

I'm still not sure how to call this. I'm trying to show an html div with the current pan and tilt so I can modify it with jquery. is this possible via the jsapi? I see pano.GetPan() but am un sure how to call it to display it NOT in a hotspot box built into the skin. it's for a game I'm developing.
by RBrooks
Tue Sep 04, 2012 7:34 pm
Forum: Pano2VR general
Topic: coordinates
Replies: 6
Views: 3130

Re: coordinates

I think I just need an text box that is not embedded in the skin with the coordinates displayed and updated...I tried to screen scrape using jquery the pan/tilt/fov box in the skin, but it for some reason isn't allowing me to do so....(it's just not showing up. say I have a div <div id="activeD...
by RBrooks
Tue Sep 04, 2012 6:41 pm
Forum: Pano2VR general
Topic: coordinates
Replies: 6
Views: 3130

Re: coordinates

it appears that as long as I add or deduct 5 from the pan and tile (based on whether its a negative or positive) seems to work. is there a better way to do this?
by RBrooks
Tue Sep 04, 2012 3:56 pm
Forum: Pano2VR general
Topic: coordinates
Replies: 6
Views: 3130

Re: coordinates

the xml file doesn't appear to have a FoV listed only coordinates, (and sometimes it's a negative number). is the fov somehow calculated in the hotspot placement? I just want to make sure I do this right before I rollout 15 levels with 20+ objects in them. is there some kind of web based or flash ba...
by RBrooks
Tue Sep 04, 2012 6:53 am
Forum: Pano2VR general
Topic: javascript api
Replies: 3
Views: 2336

javascript api

does the javascript api work in HTML5?
by RBrooks
Mon Sep 03, 2012 10:19 pm
Forum: Pano2VR general
Topic: coordinates
Replies: 6
Views: 3130

Re: coordinates

I'm trying to find a way to use jquery to set a click event. I'm making a game and am using the interactive panos. how do I use the web player to track what a user is clicking on, similar to the way the hotspot manager works I guess. I want to be able to prompt the player to "find the golden ea...
by RBrooks
Mon Aug 27, 2012 12:46 am
Forum: Pano2VR/Object2VR Skins
Topic: hotspot template questions
Replies: 7
Views: 5938

Re: hotspot template questions

one last issue. for some reason the cursor no longer goes to hand and the title attribute isn't showing. it's showing for the default hotspot, not the new themed ones
by RBrooks
Thu Aug 23, 2012 8:12 pm
Forum: Pano2VR general
Topic: coordinates
Replies: 6
Views: 3130

coordinates

I'd like to have a way to get the current coordinates (pan="XXX" tilt="XXX") as I click the screen on a pano for a debug script I'm creating. Is this possible? Scenario: I'm browsing the pano and I'd like to just click the screen and capture the coordinates (or even a floating to...
by RBrooks
Thu Aug 23, 2012 7:48 pm
Forum: Pano2VR/Object2VR Skins
Topic: hotspot template questions
Replies: 7
Views: 5938

Re: hotspot template questions

I fixed it. Once you make multiple hotspot types, you have to specify EVERY hotspot skin-ID otherwise, it shows the last in the array....
by RBrooks
Thu Aug 23, 2012 7:07 pm
Forum: Pano2VR/Object2VR Skins
Topic: hotspot template questions
Replies: 7
Views: 5938

Re: hotspot template questions

I see how to create them and I have in fact created them, the problem I'm having is how do I call the hotspot "theme" that I want. if I add 3 different hotspot templates say, hsred, hsyellow, hspink. I link the actions, images, etc to the hs. in the hotspot editor, how do I make certain ho...
by RBrooks
Wed Aug 22, 2012 11:12 pm
Forum: Pano2VR/Object2VR Skins
Topic: hotspot template questions
Replies: 7
Views: 5938

hotspot template questions

I have a need for multiple hotspot classes, say a red one for a regular item, but a yellow one for a item that's on sale. I'm already generating the XML files correctly. I'm just not quite sure yet how to add the "classes" of hotspot. there is little to no information on this unfortunately...
by RBrooks
Wed Aug 22, 2012 11:08 pm
Forum: Pano2VR general
Topic: Need help linking panos in HTML5
Replies: 2
Views: 2037

Re: Need help linking panos in HTML5

this is how we do it: <?php session_start(); $pano=$_GET['pano']; ?> On your html page where you initialize the pano - <script type="text/javascript"> // create the panorama player with the container pano=new pano2vrPlayer("container"); pano.readConfigUrl("<?php echo $pano; ...