Hello All
I have a problem with loading external swf’s into a flash movie. It loads fine but the clip doesn’t do what it is supposed to once it is loaded. for example I have a clip that is supposed to play audio once it is loaded into the main movie clip. It loads fine then when I press the play button I can’t get sound. This is code I used for the main movie
on (rollOver) {
slider.xMove = button_2._x;
}
on (release) {
_root.createEmptyMovieClip(“container”, 1);
// Load external SWF
[color=red]**container.loadMovie(“lisa.swf”, 2);
**[/color]}
Here is the code fromw the external swf
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}
_x=2;
_y=32;
Any help would be appreciated, and thanks in advance.