我需要一些帮助来解决一些编译错误。
我正在学习一个教程(在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;
}