Action Script 2 - Flash

프로퍼티 액션 스크립트 제어

페이지 정보

작성자 김두호 작성일 70-01-01 09:00 조회 191 댓글 0

본문

02.JPG

instance name : airplane
03.JPG
instance name : Caption
04.JPG
on(rollOver) {
_root.Caption.text="시계방향으로 10만큼 회전합니다.";
}
on(release) {
_root.airplane._rotation = _root.airplane._rotation +10 ;
_root.Caption.text="현재의 회전각도는 " + _root.airplane._rotation;
}
05.JPG
on(rollOver) {
_root.Caption.text="반시계방향으로 10만큼 회전합니다.";
}
on(release) {
_root.airplane._rotation = _root.airplane._rotation - 10 ;
_root.Caption.text="현재의 회전각도는 " + _root.airplane._rotation;
}
06.JPG
on(rollOver) {
_root.Caption.text="비행기의 X축 크기를 10 만큼 증가시킵니다.";
}
on(release) {
_root.airplane._xscale = _root.airplane._xscale + 10 ;
_root.Caption.text="현재의 X스케일은 " + _root.airplane._xscale;
}
07.JPG
on(rollOver) {
_root.Caption.text="비행기의 X축 크기를 10 만큼 감소시킵니다.";
}
on(release) {
_root.airplane._xscale = _root.airplane._xscale - 10 ;
_root.Caption.text="현재의 X스케일은 " + _root.airplane._xscale;
}
08.JPG
on(rollOver) {
_root.Caption.text="비행기의 투명도를 10씩 증가시킵니다.";
}
on(release) {
_root.airplane._alpha = _root.airplane._alpha + 10 ;
_root.Caption.text="현재의 투명도는 " + _root.airplane._alpha;
}
09.JPG
on(rollOver) {
_root.Caption.text="비행기의 투명도를 10씩 감소시킵니다.";
}
on(release) {
_root.airplane._alpha = _root.airplane._alpha - 10 ;
_root.Caption.text="현재의 투명도는 " + _root.airplane._alpha;
}
10.JPG
on(rollOver) {
_root.Caption.text="비행기의 Y축 크기를 10 만큼 증가시킵니다.";
}
on(release) {
_root.airplane._yscale = _root.airplane._yscale + 10 ;
_root.Caption.text="현재의 Y스케일은 " + _root.airplane._yscale;
}
11.JPG
on(rollOver) {
_root.Caption.text="비행기의 Y축 크기를 10 만큼 감소시킵니다.";
}
on(release) {
_root.airplane._yscale = _root.airplane._yscale - 10 ;
_root.Caption.text="현재의 Y스케일은 " + _root.airplane._yscale;
}
12.JPG
on(rollOver) {
_root.Caption.text="비행기를 왼쪽으로 10씩 이동시킵니다.";
}
on(release) {
_root.airplane._x = _root.airplane._x - 10 ;
_root.Caption.text="현재의 X좌표는 " + _root.airplane._x;
}
13.JPG
on(rollOver) {
_root.Caption.text="비행기를 오른쪽으로 10씩 이동시킵니다.";
}
on(release) {
_root.airplane._x = _root.airplane._x + 10 ;
_root.Caption.text="현재의 X좌표는 " + _root.airplane._x;
}
14.JPG
on(rollOver) {
_root.Caption.text="비행기를 윗쪽으로 10씩 이동시킵니다.";
}
on(release) {
_root.airplane._y = _root.airplane._y - 10 ;
_root.Caption.text="현재의 Y좌표는 " + _root.airplane._y;
}
15.JPG
on(rollOver) {
_root.Caption.text="비행기를 아래쪽으로 10씩 이동시킵니다.";
}
on(release) {
_root.airplane._y = _root.airplane._y + 10 ;
_root.Caption.text="현재의 Y좌표는 " + _root.airplane._y;
}

댓글목록 0

등록된 댓글이 없습니다.

알림 0