This time it is in the dynamic code...
pageContent is a VBox on a TitleWindow.
var
box:Box=new Box();
box.percentWidth=100;
box.setStyle("horizontalAlign","center");
var image:Image = new Image();
image.percentWidth = psize;
image.source = med2file;
box.addChild(image);
pageContent.addChild(box);How do I stop the bounding box from rocketting off the bottom of the VBox. I've even got scroll bars to show for it. How do I tightly close my bounding box around the scaled image? - Stephen

