Page 1 of 1

Pano2QTVR 1.6.6 released

Posted: Mon Jul 30, 2007 11:02 pm
by thomas
This release hopefully solves the "pano is controllable outside of the window" problem if you embed the panorama into a larger container.

Posted: Sat Aug 18, 2007 12:33 pm
by danio987
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); 


}

Posted: Mon Aug 20, 2007 12:02 am
by thomas
Yes it should!