0

我正在创建 Flash 游戏,这里是重新启动按钮,并且我具有从舞台上删除所有对象(子对象)的功能。

function restartGame(e:MouseEvent):void
{
    while (numChildren > 0) {
        removeChildAt(0);
}
addChild(_cards);

//here I need to add background

    startMemoryGame();

}

正常情况下不需要添加背景,游戏启动时自动添加。在库中它被称为 background.jpg,我将它转换为图形,现在我将它命名为背景添加链接“背景”,但addChild(background);对我不起作用。你可以帮帮我吗?谢谢你。

4

1 回答 1

0

我假设您只是在图像上设置了链接,在这种情况下 go :

var background:Bitmap = new Bitmap(new Background);
addChild(background);

如果它是带有链接集的 MovieClip 符号,您可以这样做:

var background:Background = new Background;
addChild(background);
于 2013-05-08T19:08:00.287 回答