我正在为我的个人网站创建一个简单的单击并滚动以获取未来的菜单。我有一个盒子,我称之为 thing_mc,我有 3 个位置。我有一个下一个和上一个。将控制 thing_mc 位置的按钮。我正在使用 TweenLite 为 thing_mc 设置动画,如果这有所作为的话。
我收到 1083 错误(...else 是意外的)和(...rightparen 是意外的)。
谁能告诉我为什么以及如何解决这个问题?
谢谢
import gs.TweenLite;
next_mc.addEventListener(MouseEvent.CLICK, nextListener);
prev_mc.addEventListener(MouseEvent.CLICK, prevListener);
//prev_mc.visible = false;
function nextListener(event:MouseEvent):void
{
if(thing_mc.x == 400);
{
TweenLite.to(thing_mc, .5, {x:50, y:50});
}
else if //// i get error 1083 here (...else is unexpected)
{
TweenLite.to(thing_mc, .5, {x:-100, y:50}); //// i get error 1083 here (...rightparen is unexpected)
}
}
function prevListener(event:MouseEvent):void
{
if(thing_mc.x == -100);
{
TweenLite.to(thing_mc, .5, {x:400, y:50});
}
else if //// i get error 1083 here (...else is unexpected)
{
TweenLite.to(thing_mc, .5, {x:500, y:50}); //// i get error 1083 here (...rightparen is unexpected)
}
}
next_mc.buttonMode = true;
prev_mc.buttonMode = true;