Resize Picture

How do you resize a picture if you attach it to an empy movieclip you created?

createEmptyMovieClip(“holder”,1);
holder2.loadMovie("./Pictures/"+pic+".jpg");

Help anybody? Thanks

createEmptyMovieClip("holder",1);
holder2.loadMovie("./Pictures/"+pic+".jpg");
holder2._width=200;
holder2._height=200

[size=1]psst… EG… you can only modify the clips properties after the content has fully loaded in[/size]

uh oh…