On inspection it looks like I did what Alex is talking about. I'm a little confused at the sliding image issue. In my experience the loaded images are placed in the top left corner of the Image control unless you explicitly do something else. You should be able to fit the Image control to the loaded image perfectly by doing something like this:
image.width = image.content.width; image.height = image.content.height; image.content.x = 0; image.content.y = 0; - Dan Freiman On 10/1/07, droponrcll <[EMAIL PROTECTED]> wrote: > > --- In [email protected] <flexcoders%40yahoogroups.com>, "Alex > Harui" <[EMAIL PROTECTED]> wrote: > > > > All children are sized and positioned by their parent based on > explicit > > or measured width/height. Images are extra tough because their size > > isn't known at first measure since the bits aren't fully loaded yet. > > Personally, I would just adjust its position when the "complete' event > > fires, but I also would expect the Container to handle this > > automatically. However, I've recommended you use Canvas so then you > > will have to position manually. If you decide to stick with boxes, we > > can look into this in more detail. > > All I'd be positioning manually inside the canvas would be the image > control itself, which doesn't help. The image is sliding all over the > place within the image control as different images are loaded. Some at > the top, some at the bottom, some at the left, some in the center, etc. > > Thanks. > > >

