0

我需要一些帮助来解决一些编译错误。

我正在学习一个教程(在http://www.youtube.com/watch?v=E8oM808ETWs)并输入了视频中显示的所有代码。当我尝试发布时,出现了两个编译错误:

场景 = 场景 1,图层 = 动作,帧 = 1,第 16 行“{”预期
场景 = 场景 1,图层 = 动作,帧 = 1,第 33 行语法错误。

这是我的代码

import flash.external.ExternalInterface
import gfx.motion.Tween
_global.gfxExtentions = true;

var angle:Number;

function init()
{
    _root.Health._yrotation = 30;
    _root.Ammo._yrotation = 30;
    angle = 0;
}

init();

_root.onEnterFrame = function();
{
    angle +=0.1;
    var sined:Number = Math.sin(angle) + 2;
    sined /=2;

    _root.Health.Title._z = -200 * sined;
    _root.Health.Bar._z = -500 * sined;
    _root.Health.Value._z = -200 * sined;
    _root.Health.Background._z = 200 * sined;

    _root.Ammo.Title._z = -200 * sined;
    _root.Ammo.Bar._z = -500 * sined;
    _root.Ammo.Value._z = -200 * sined;
    _root.Ammo.Background._z = 200 * sined;

    _root.Weapon._z = -200 * sined;
}
4

2 回答 2

1
_root.onEnterFrame = function(); // <-- lose this semi-colon
{
于 2012-06-24T15:06:48.610 回答
0

场景 = 场景 1,图层 = 图层 1,帧 = 1,第 3 行“)”预期

attachMovie('basket','basket', 2, {_x: Stage.width-50, _y: Math.random()*(Stage.height:-150) +50});

于 2016-10-09T12:52:04.253 回答