個人用サイトの将来のメニュー用に、単純なクリックとスクロールを作成しています。私はボックスを持っていて、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;