Open GoogleCodeExporter opened 8 years ago
I have the same issue on MacOSX 10.5.6 running Firefox 3.0.5 as well as Safari
3.2.1.
It occurs on cylinder and equirectangular pano's. My flash plugin is 10.0.12.36.
The "Loading Preview" message is always displayed, whether or not a preview
image is
specified.
Original comment by hvdw...@gmail.com
on 31 Dec 2008 at 10:42
I also have this problem... Anyone have any solution or fix?
Original comment by martijnd...@ziggo.nl
on 28 Jan 2009 at 10:03
Hi all:
There is a UserInterface Actionscript file provided with the source code. This
contains the listeners for loading &
load progress. This can be edited any way you see fit, to handle loading of
different types of panoramas or
scenarios.
As it is provided, the example's loading logic is geared for cubes.
Original comment by cheatham...@gmail.com
on 28 Jan 2009 at 2:57
Original comment by cheatham...@gmail.com
on 1 Apr 2009 at 7:55
If anyone needs to get this working but can't figure out how, I'll share the
method that solved this problem for me. Open up
UserInterface.as change the following lines:
if ( e.itemsTotal > 1 ) {
loadingText.text = "LOADING: "+theWeightLoaded+"% (cube face "+e.itemsLoaded+" of "+[e.itemsTotal-1]+")";
} else {
loadingText.text = "Loading Preview";
}
if ( theWeightLoaded >= 99 && e.itemsTotal > 1) {
// set the stage with our buttons and such:
resizeHandler();
// hide this text:
loadingText.visible = false;
}
To now be:
if ( e.itemsTotal > 1 ) {
loadingText.text = "LOADING: "+theWeightLoaded+"% (cube face "+e.itemsLoaded+" of "+[e.itemsTotal-1]+")";
} else {
loadingText.text = "LOADING: "+theWeightLoaded+"%";
}
if ( theWeightLoaded >= 99) {
// set the stage with our buttons and such:
resizeHandler();
// hide this text:
loadingText.visible = false;
}
By essentially changing two lines it got the loading behaviour working as
expected for cylinders.
Original comment by mand...@gmail.com
on 10 Nov 2009 at 4:48
Original issue reported on code.google.com by
laser3y3s
on 30 Dec 2008 at 1:57