按钮在as2的外部swf后面

时间:2012-02-14 12:39:55

标签: flash actionscript-2 loader key-events

我正在使用预加载器加载外部swf并访问其函数/变量,但是在外部swf加载后我的movieclip(其中包含访问外部swf的按钮)留在加载的swf后面,现在我希望那个movieclip保持不变装载外部瑞士法郎的顶部。

用于装载程序的代码:

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);
}

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); }

1 个答案:

答案 0 :(得分:0)

hackMenu.swapDepths(_root.getNextHighestDepth());