I would like to use loadMovie to load an image to flash
I can do it using:
_root.loadMovie("abc.jpg","POST");
however, as the size of the image occupied the whole screen, so I have created another movieclip with smaller size, and wrote:
onClipEvent(load) {
this.loadMovie("abc.jpg","POST");
}
However, it does not work and no image was shown, please help, thanks!