我正在使用预加载器来加载外部 swf 并访问它的函数/变量,但是在外部 swf 加载后,我的影片剪辑(其中包含访问外部 swf 的按钮)停留在加载的 swf 后面,现在我希望该影片剪辑留在顶部加载外部 swf。
用于加载程序的代码:
loadMovieNum("discocubes.swf", 0);
hackMenu.dragBar.onPress = function(){
startDrag(hackMenu);
}
hackMenu.dragBar.onRelease = function(){
stopDrag();
}
hackMenu.livesHackBtn.onRelease = function(){
if (_root.n_Level >= _root.o_CubeTutorial.length || _root.s_GameStyle == "survival")
{
_root.f_ShowMessage("Level Up!");
}// end if
_root.f_StartGame(_root.s_GameMode, _root.n_Level + 1, _root.s_GameStyle);
}