I have a flash file set up so that when a user clicks on a button, an external swf file loads into an empty movieclip on my main timeline, using the loadMovie script. I have that all working fine, except for the external file is a little too large and I was hoping to just add a simple script to the button that loads the movie. So I just want to simply change the width and height of the movie when it loads. BUt only to a particular movie. I don't need to resize all of the external swfs. "Animation.swf" is 550 x 400 pixels and I'd like it to be viewed at 500 x 333 pixels. Is this possible? Can someone please give me a sample script to use? I'm new to actionscript (2.0). Thanks!
My code for one of the buttons looks like this:
on (release) {
loadMovie("animation.swf", "../EmptyMC");
}
My code for one of the buttons looks like this:
on (release) {
loadMovie("animation.swf", "../EmptyMC");
}