- 무비클립 속에 버튼이 있을 때
onRelease나 onPress로는 무비클립속의 버튼이 제대로 동작하지 않음. 그러므로 다음과 같은 구문이 필요하다.
onClipEvent (mouseDown){
if (this.hitTest(_root._xmouse, _root._ymouse, 1) == true) {
액션
}
}
또는 mouseDown(onPress 효과) 대신 mouseUp(onRelease 효과)
- 움직임에 약간의 반동주기
speed = ((myTarget-img_mc._x)*0.3)+(speed*0.5);
img_mc._x += speed;