[SIZE=3][FONT=Calibri]We have used loadMovie to load some small SWF files on a home page we have made. The swf files are in different sizes and we need to be able to set the size. How do we do this?[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]We hoped the problem was solved with the following code, but this code only sets the size of the variable “minRamme”, the contents are still to big, resulting in only a part of the swf file being visible. [/FONT][/SIZE]
[SIZE=3][FONT=Calibri]Anyway the following code ignored the onRelease command, so the swf file started playing at once. How come?[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]knapp.onRelease = Function(); {[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]minRamme = this.createEmptyMovieClip(“clip”,0);[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]minRamme.loadMovie(“ann kristin.swf”);[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]minRamme.height = 400;[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]minRamme.width = 600;[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]minRamme._x = 0;[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]munRamme._y = 0;[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]}[/FONT][/SIZE]
[FONT=Calibri][SIZE=3]Thanks in advance![/SIZE][/FONT]