Pano2QTVR 1.6.6 released

Specific Q&A about the new Flash export
Locked
User avatar
thomas
Chief Gnome
Posts: 2611
Joined: Fri Sep 01, 2006 3:56 pm
Location: Vienna, Austria
Contact:

This release hopefully solves the "pano is controllable outside of the window" problem if you embed the panorama into a larger container.
MfG, Thomas
danio987
Posts: 5
Joined: Mon Jul 23, 2007 7:27 pm

is it work with loadMovie/loadClip function ?
I'm going to try this in my next project but i must to know if i load movie by this function all will work fine.

e.g.

Code: Select all

on (release) {
	
     // Create container movieclip
var vr:MovieClip = _root.createEmptyMovieClip("vr", 2);
     // prevent access to "real" root
vr._lockroot=true;

     // Create a Movieclip loader
var myLoader = new MovieClipLoader();
var myListener = new Object();

myListener.onLoadStart = function() {
    // Set the dimentions and position of the pano
  vr.window_width=600;
  vr.window_height=300;
  vr.window_x=200;
  vr.window_y=6;
// change initial viewing parameters
  vr.pan=300;
  vr.tilt=10;
  vr.autorotate = 1;
  vr.autorotate_delay = 20;
  vr.wx_x=300;
  vr.wy_y=600;
};


// add the Listener
myLoader.addListener(myListener);

// ... and finally load the pano!
myLoader.loadClip("teren/1.swf", vr); 


}
User avatar
thomas
Chief Gnome
Posts: 2611
Joined: Fri Sep 01, 2006 3:56 pm
Location: Vienna, Austria
Contact:

Yes it should!
MfG, Thomas
Locked