hello folks,

here's what I want to do. Load in an image, then, once it's loaded resize it to a certain width and height in case it exceeds the maximum size.

I did the obvious, load in the image, then in the next frame :

if(imageholder._width > 328){
imageholder._width = 328
}
if(imageholder._height > 328){
imageholder._height = 328
}

nothing happens, when I trace those two values, they come out as zero, does the image have yet another instance I know nothing about and cannot influence, I DON'T think so. So that's it. I need YOUR help to move on in this Flash Remoting project of mine...

V