본문
|
|
|
|
|
-
Instance Name : 제인
|
-
Instance Name : 꼬마
|
-
Instance Name : 여자
|
-
Instance Name : 남자
|
|
|
-
_root.onLoad=function() {
-
depth=0;
-
}
-
_root.제인.onPress=function() {
-
_root.제인.swapDepths(depth++); ori_j_x=_root.제인._x;
-
ori_j_y=_root.제인._y;
-
_root.제인.startDrag();
-
}
-
_root.제인.onRelease=function() {
-
_root.제인.stopDrag();
-
if (_root.제인.hitTest(_root.여자)) {
-
_root.제인._x=_root.여자._x;
-
_root.제인._y=_root.여자._Y;
-
_root.message.text="아주 잘했어요~ 축하....^^*";
-
} else {
-
_root.제인._x=ori_j_x;
-
_root.제인._y=ori_j_y;
-
_root.message.text="잘못옮겼어요~ 다시해보세요....^^*";
-
}
-
}
-
_root.꼬마.onPress=function() {
-
_root.꼬마.swapDepths(depth++);
-
ori_b_x=_root.꼬마._x;
-
ori_b_y=_root.꼬마._y;
-
_root.꼬마.startDrag();
-
}
-
_root.꼬마.onRelease=function() {
-
_root.꼬마.stopDrag();
-
if (_root.꼬마.hitTest(_root.남자)) {
-
_root.꼬마._x=_root.남자._x;
-
_root.꼬마._y=_root.남자._Y;
-
_root.message.text="아주 잘했어요~ 축하....^^*";
-
} else {
-
_root.꼬마._x=ori_b_x;
-
_root.꼬마._y=ori_b_y;
-
_root.message.text="잘못옮겼어요~ 다시해보세요....^^*";
-
}
-
}
|
|
-
on(press) {
-
_root.message.text="제 위치를 찾아가면 위치를 바꿀 수 없습니다. 버튼을 눌러 초기화하세요.";
-
_root.제인._x=70;
-
_root.제인._y=150;
-
_root.꼬마._x=70+118;
-
_root.꼬마._y=150;
-
}
|