Hi
I’m loading a swf called game.swf into into another swf called main.swf using the script below:
createEmptyMovieClip(“container_mc”, 1);
container_mc._lockroot = true
container_mc._x = 270;
container_mc._y = 200;
loadMovie(“game.swf”, “container_mc”);
The main.swf runs at 12 fps and the game.swf at 32 fps.
When the game.swf runs within the main.swf it plays to slow.
Is there way to run the game at 32 fps when it is loaded in a swf that plays at 12 fps?
Any help is appreciated. Thanks!