if anyone can help me here i would greatly appreciate it.
Okay, this may seem 2 simple, but I am having problems on a Mac.
I am trying to load an external swf into a mc on my stage. The problem is:
on swf load, it refreshes the whole main.swf which contains the mc. Once the new swf is cached, there are no problems though.
The mc (container1) is on it’s own level. The buttons code is;
Ok, I have a different understanding of the post, not sure if I full understand though, but first things first, tellTarget is dead.
With dot syntax you can do a tellTarget thing easier
on (rollOver) {
_root.scroller.xpos = 300;
_root.arrow1.ypos = 320;
}
on (release) {
_root.container1.loadMovie(“flash/corporate.swf”);
_root.title.gotoAndPlay(“gocorporate”);
}
}
Next up is the issue of your movie refreshing. Hmm, this sounds to me like you aren’t putting a preloader on your loaded movie.
This is causes a blank area to show up until the movie loaded. I recommend using a preloader and seeing what happens. There are about 3 or 4 tutorials on kirupa.com on how to make one (DO NO USE THE PRELOADER COMPONENT).