我希望当按钮位置为x> 230时出现第二帧。这是代码。
on (press) {
startDrag (this,false)
}
on (release) {
if (x> 230,00) {
gotoAndStop(3);
}
stopDrag()
}
答案 0 :(得分:0)
你有一些语法错误,你拖动错误的对象。这是工作代码
on (press) {
startDrag(btn,false);
}
on (release) {
trace(btn._x);
if (btn._x> 230) {
gotoAndStop(3);
}
stopDrag()
}