1 자습서 플래시Flash 강좌,[플래시][엑션스크립트] 무비클립 위치 제어 Tue May 24, 2011 8:01 am
Admin
Admin
■ Note : 무비클립 위치 제어
■ Action Script-x Sample
----------------------------------------------------------------------------------------
***** 위로 이동 버튼 *****
on (release) {
_root.butterfly._y = _root.butterfly._y - 10;
_root.butterfly._rotation = 0;
}
***** 오른쪽으로 이동 버튼 *****
on (release) {
_root.butterfly._x = _root.butterfly._x + 10;
_root.butterfly._rotation = 90;
}
***** 아래로 이동 버튼 *****
on (release) {
_root.butterfly._y = _root.butterfly._y + 10;
_root.butterfly._rotation = 180;
}
***** 왼쪽로 이동 버튼 *****
on (release) {
_root.butterfly._x = _root.butterfly._x - 10;
_root.butterfly._rotation = 270;
}
----------------------------------------------------------------------------------------]
- 플래시에서 사용하는 좌표체계에서는 화면의 좌측 상단이 원점이고, 아래로 내려갈수록 _y값이 증가합니다.
- _rotation 값을 더하면(+) 시계 방향으로 회전하고 빼면(-) 반시계 방향으로 회전합니다.
■ Action Script-x Sample
- 이동방향으로 방향 바꾸는 버튼
----------------------------------------------------------------------------------------
***** 위로 이동 버튼 *****
on (release) {
_root.butterfly._y = _root.butterfly._y - 10;
_root.butterfly._rotation = 0;
}
***** 오른쪽으로 이동 버튼 *****
on (release) {
_root.butterfly._x = _root.butterfly._x + 10;
_root.butterfly._rotation = 90;
}
***** 아래로 이동 버튼 *****
on (release) {
_root.butterfly._y = _root.butterfly._y + 10;
_root.butterfly._rotation = 180;
}
***** 왼쪽로 이동 버튼 *****
on (release) {
_root.butterfly._x = _root.butterfly._x - 10;
_root.butterfly._rotation = 270;
}
----------------------------------------------------------------------------------------]