zzzeeb
10-12-2005, 09:03 PM
Here's my AS for loading a map and it's controls into my _root MC:
[as]
myMovieClip._lockroot = true;
this.createEmptyMovieClip("map", 0);
with (map)
_x=0;
_y=0;
_xscale=50
_yscale=50
loadMovie("map.swf", map);
this.createEmptyMovieClip("frame", 1);
with (frame)
_x=0;
_y=0;
loadMovie("frame.swf", frame);
[as/]
"map.swf" loads at 50%.... Perfect. The problem is that "frame.swf" also loads at 50%. I'd like it to load at 100%. What's the correct way to do that?
Thanks.
Zzzeeb
[as]
myMovieClip._lockroot = true;
this.createEmptyMovieClip("map", 0);
with (map)
_x=0;
_y=0;
_xscale=50
_yscale=50
loadMovie("map.swf", map);
this.createEmptyMovieClip("frame", 1);
with (frame)
_x=0;
_y=0;
loadMovie("frame.swf", frame);
[as/]
"map.swf" loads at 50%.... Perfect. The problem is that "frame.swf" also loads at 50%. I'd like it to load at 100%. What's the correct way to do that?
Thanks.
Zzzeeb