Это Bitmap. JPG грузится с указанного в xml места.
Вот так вот нет ошибки, но и текстура не масштабируется.

Код AS3:
public function creationMenu ():void
{
var url:String = stroke.@picture;
var m:BitmapFileMaterial = new BitmapFileMaterial ();
m.doubleSided = true;
m.interactive=true;
m.smooth=true;
m.addEventListener(FileLoadEvent.LOAD_COMPLETE, changeMat);
m.name=item.name;
m.texture =url;
}
public function changeMat(evt:FileLoadEvent): void
{
var menu:DisplayObject3D = scene.getChildByName(photoElements) as DisplayObject3D;
for each ( var item:DisplayObject3D in menu.children)
{
var mat:BitmapFileMaterial = evt.currentTarget as BitmapFileMaterial;
var bmd:Bitmap = new Bitmap(mat.bitmap);
bmd.scaleX=0.5;
trace("BITMAP!!!="+bmd.scaleX);
if (mat.name==item.name)
{
item.material=mat;
}
align(bmd,item);
}
}
function align(bmp:Bitmap, plane:DisplayObject3D)
{
var ratio:Number = Math.min(SIZE / bmp.width, SIZE / bmp.height );
bmp.scaleX = bmp.scaleY = ratio;
bmp.x = plane.x + (SIZE - bmp.width) / 2;
bmp.y = plane.y + (SIZE - bmp.height) / 2;
}