转到x位置的下一帧

时间:2013-12-06 19:12:32

标签: flash adobe

我希望当按钮位置为x> 230时出现第二帧。这是代码。

on (press) {
startDrag (this,false)
}

on (release) {
if (x> 230,00) {
gotoAndStop(3);
}
stopDrag()

}

1 个答案:

答案 0 :(得分:0)

你有一些语法错误,你拖动错误的对象。这是工作代码

on (press) {
    startDrag(btn,false);
}
on (release) {
    trace(btn._x);
    if (btn._x> 230) {
        gotoAndStop(3);
}
stopDrag()
}