This forum is amazing for answers but I couldn’t find this one.
I have a flash movie.
I am loading a .swf I wish to size down to 1/10th it’s size.
I have a empty movie clip called container in which I am loading the swf called logo. The instance name for the container movie clip is logo. What can i do to size it down?
Yes, that is correct, and you can put it wherever you want. If you want it to resize when the button is pressed, use it in the on handler on your button, if you want it when a clip loads, put it in the onClipEvent handler, and if you want it when a frame enters, put it in a frame.
Perhaps you are getting the error because it is onClipEvent not onclipEvent.
Yeah… I remember having trouble with this once before (for a different command) and it was the case that screwed it up. It took me forever to figure it out. Now I try to get the right case for everything.
I have a logo I go in swf format but not the fla.
I want to load it into an empty movie clip which has been given the instance name spin.
I Have tried the
onClipEvent (load) {
spin._width=50;
sping._height=50;
}
And I get no code errors now that I have corrected the upper and lower case error. My swf is still loading at full size and not changing.
My theory is that I may be changing the “blank” movie clips size but it is not affecting the loaded .swf.
Any solution?