操作脚本语法错误



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

我正在按照教程(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;
}
_root.onEnterFrame = function(); // <-- lose this semi-colon
{

场景=场景 1,图层=图层 1,帧=1,第 3 行 ')'

attachMovie('basket','

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

相关内容

  • 没有找到相关文章

最新更新