I am loading an images for a spherical panorama and was wondering if
there is a method to track progress. I tried loading images with
urlloader then placing image in a sprite and casting that as
MovieMaterial. However nothing shows up when I do this. Felt kind of
stupid after that.

Below loads the image but how can I track progress with this, or is
there a better method?

bitmapMaterial = new BitmapFileMaterial("Panorama.jpg");
bitmapMaterial.smooth = true;

var pano:Sphere = new Sphere({material:bitmapMaterial, radius:2000, x:
0, y:0, segmentsH:20, segmentsW:20});
view.scene.addChild(pano);
pano.scaleX = -1;

Thanks in any advance for any Ideas!!!

Reply via email to