Multiple full sites

Sounds to me like a level problem. You need to tell the button where the action needs to take place, either in the root movie or the top level.

I’m no expert but you can use simple code like this to target the correct level.

Load into root:

on (release) {
loadMovie("yourmovie.swf ", “_root.containername”);
}

or

load into top level movie:

on (release) {
loadMovie(“yourmovie.swf”, “_this.containername”);
}

yourmovie.swf being the name of your flash file.

containername bening the instance name of the movie clip you are loading into.

The differences between the 2 examples above is the target location, either _root or _this.

Hope that helps a little. I’m sure someone else will probably have a better/alternate method as well.

Cheers

FW