Question
Holding Control of external .swf until fully loaded?
Hi, would love help with how to control an external .swf that
is not fully loaded (or rather how to stop someone from clicking
buttons that effect it oddly). I'm in Flash MX.
My main movie loads an external .swf into a target using: _root.pictar.loadMovie("whatever.swf");
The external .swf is a series of 10 photos, each on a frame.
In my main movie, I then have corresponding thumbnails, which when you click, tell the externally loaded .swf to go to the frame with the full size image on it. Like this:
on thumbnail #2 the action is
on (release) {
_root.pictar.gotoAndStop(2);
}
All works great, except if I click before the external movie is fully loaded I think. If I click a thumbnail too fast, image 2 comes up when I click thumbnail 8. And everything acts screwy.
How can I get around this? Can I disable the thumbnail buttons until my external .swf is fully loaded? If that's the only solution what do I do because I'm using the same target "pictar" each time I'm loading a new external .swf?
The site with this problem is www.gregorygale.com. Maybe that will help. Thanks so much.

My main movie loads an external .swf into a target using: _root.pictar.loadMovie("whatever.swf");
The external .swf is a series of 10 photos, each on a frame.
In my main movie, I then have corresponding thumbnails, which when you click, tell the externally loaded .swf to go to the frame with the full size image on it. Like this:
on thumbnail #2 the action is
on (release) {
_root.pictar.gotoAndStop(2);
}
All works great, except if I click before the external movie is fully loaded I think. If I click a thumbnail too fast, image 2 comes up when I click thumbnail 8. And everything acts screwy.
How can I get around this? Can I disable the thumbnail buttons until my external .swf is fully loaded? If that's the only solution what do I do because I'm using the same target "pictar" each time I'm loading a new external .swf?
The site with this problem is www.gregorygale.com. Maybe that will help. Thanks so much.
