[F8] scope issue

Hi

I am trying to load a game into my movie(myMc) using the loadmovie method. The game is working fine, but when I load it into myMc it doesn’t. The actionscript in the game uses _root. so when I load the game into myMc the game wants to refer to the myMc root and it doesn’t work. Can I make a var like _root=this.root or some thing like that and use “find and replace” to change the script?

I also tried the getUrl method to load the game… that works fine but I then can’t figure out how to position the game in myMc using _x & _y. Also there are speed issues as the game uses 32fps and myMc uses 12fps.

This is the script I’m using now:

createEmptyMovieClip(“container_mc”, 1);
container_mc._x = 270;
container_mc._y = 200;
loadMovie(“game.swf”, “container_mc”);

Any help is greatly appreciated.

Thanks!