Search found 143 matches

by Don
Fri Mar 22, 2013 4:01 pm
Forum: Pano2VR general
Topic: Google map floor plan overlay in setting user data
Replies: 11
Views: 8192

Re: Google map floor plan overlay in setting user data

...allow a user selected image to be used instead of the external web maps... Callum, regarding floor plans instead of maps, if you are outputting to Flash, then have you tried, or considered, loading a FLAT image as one of the nodes on your tour? Then place 60 node markers on that flat node. HTML ...
by Don
Sun Mar 17, 2013 2:56 am
Forum: Pano2VR general
Topic: call api for source "press" action "pan right/left"
Replies: 11
Views: 6571

Re: call api for source "press" action "pan right/left"

These functions and four buttons placed in my Pano2vr Pro 4.0 HTML page work for me. Note: I re-did the PAN button above, because the startAutoRotate function does a little jig when switching from Left pan to Right pan. Hopefully the gnomes will give us something cleaner than my solution below in th...
by Don
Fri Mar 15, 2013 6:23 pm
Forum: Pano2VR general
Topic: call api for source "press" action "pan right/left"
Replies: 11
Views: 6571

Re: call api for source "press" action "pan right/left"

In this code string = "javascript:pano.startAutorotate(-1,0,0);" means (pan,tilt,FoV) values... Not true. I guessed the same, but that did not work for me. So I looked it up. The "setAutoRotate" javascript function is not in the Javascript API. However, the "startAutoRotate...
by Don
Fri Mar 15, 2013 12:03 am
Forum: Pano2VR general
Topic: call api for source "press" action "pan right/left"
Replies: 11
Views: 6571

Re: call api for source "press" action "pan right/left"

...this works for me. Left Button: <input type="button" id="button1" value="Pan Left" onmousedown="javascript:pano.startAutorotate(-1,0,0);" onmouseup="javascript:pano.stopAutorotate();" /> Right Button: <input type="button" id="button...
by Don
Wed Mar 13, 2013 4:27 pm
Forum: Pano2VR general
Topic: call api for source "press" action "pan right/left"
Replies: 11
Views: 6571

Re: call api for source "press" action "pan right/left"

Here is a list of events you can use. Each event on the list comes with an example: http://www.w3schools.com/jsref/dom_obj_event.asp Assigning the OnMouseDown event to a button in a form looks like this: <form> <input type="button" value="test button" onmousedown="javascript...
by Don
Tue Mar 12, 2013 8:33 pm
Forum: Pano2VR general
Topic: call api for source "press" action "pan right/left"
Replies: 11
Views: 6571

Re: call api for source "press" action "pan right/left"

I assume you mean a button on the web page, not a button on the tour skin? Did you see this Garden Gnome example? http://gardengnomesoftware.com/wiki/Pano2VR_-_Flash_-_JavaScript_API I'm not sure how much you know about javascript, so here is a simple example of a button onClick event, in a form, on...
by Don
Sat Mar 09, 2013 1:32 am
Forum: Pano2VR general
Topic: Direct Node Access # Sign Removed by Web Server
Replies: 3
Views: 2647

Re: Direct Node Access # Sign Removed by Web Server

This works well for me and will handle additional future pan, tilt, and fov variables. I'm open to better ideas and expect to get better as I learn more about the Javascript API for HTML5 tours. Paste this javascript into the tour HTML file immediately after the <body> tag, and before any Garden Gno...
by Don
Thu Mar 07, 2013 5:01 pm
Forum: Pano2VR general
Topic: Direct Node Access # Sign Removed by Web Server
Replies: 3
Views: 2647

Direct Node Access # Sign Removed by Web Server

Direct Node Access uses a hash sign “#” before the word “node”. My web server (asp.net on IIS) removes all of the querystring beginning with the # sign to the Right. This is a common server side problem with hash signs (aka pound sign, anchor tag, actionlink) in the URL. Removal of the # occurs at t...