Loading Images into a Movieclip and changing Width / Height

Say I have something like this…


createEmptyMovieClip("photo",getNextHighestDepth());
photo._width = 800;
photo._height = 600;
photo.loadMovie("someimage.jpg");

Original file size is say 1024…

Can I resize the moviecip? It doesn’t seem to be working for me.

Figured it out… using bitmapdata class and a matrix + scaling