움직이는 버튼
movie 700/500
1.이미지 6장 한꺼번에 삽입 w=450 h=350 O=X 센타 x=400 Y=250
이름 아래서부터 1~6으로,
2.1과4는 rotation=15, 2와5는 그대로, 3과6은 rotation=-15,로함
3.1,4라인 1프레임에 우클릭→Appear into position→3D spin and
stand up 프레임수=20, 2,5라인 1프레임에 우클릭→Zoom in 프레
임수=20, 3,6라인 1프레임에 우클릭→Appear into position→
wild Rotate 프레임수=20
4.1~6선택 우클릭→covert→covert to movie clip 이름을 1.2.3.4.
5.6 으로 1 열고 movie clip라인 20프레임에 stop주고 2~6도 열고
모두 stop주고
5. 1의 2프레임에 우클릭→move, 12프레임에 우클릭→Remove 이
두효과를 복사 2=12 3=22 4=32 =542 6=52에 붙여넣고 신1라인
1,11,21,31,34,51,61에 stop주세요
6. 신1선택 원툴선택 그려주고 라인=논 Fill color=Gradient 색=우측
끝이 FF00FF 좌측의 검은색 끓어다우측에서큰두칸 띄어서놓고 알
파=0으로 radialgradient 선택 W=80 H=80 O=X 센타 X=60 Y=60
으로, 하나복사하여 80%로 줄이고 라인=실선 굵기=0 색=흰색
7. T툴선택 원안에 Button입력하고 크기,색, 체=임의 T라인 1프레임
에 우클릭→Looping continously→orbit circle flat 효과더블클릭
프레임수=70 width of circle=87 Fade=100 perspective=48
color change=0
8. gitter 불러와 원안에 위치 맞추고 T와 shape두 개 아래로 내려주
고 gitter와 T와 shape두 개 선택 우클릭→Grouping→group as
movie clip, 이름 button으로
9. button선택 스크립트에 아래 마우스 따라다니는 소스 복사해다 붙
여넣고 이어서 계속 Add script→Events→button→on(release)
Add script→Blocks→telltarget선택 Target에서 root선택 다시
Add script→Movie Control→Goto and play→
gotoAndplay(FRAME)하고 skip frames체크하고 프레임수=2로
하세요
버튼에 붙일 마우스따라 다니는 소스
onSelfEvent (load) {
this._x = 0;
this._y = 0;
this.speed = 7;
}
onSelfEvent (enterFrame, includingFirstFrame) {
this.endX = _root._xmouse;
this.endY = _root._ymouse;
this._x += (this.endX-this._x)/this.speed;
this._y += (this.endY-this._y)/this.speed;
}
onFrame (70) {
gotoAndPlay(1);
}
투명 이미지입니다
'스위시세상 > 버튼 만들기' 카테고리의 다른 글
3단과 T 플스크린 버튼 직접 만들기 3가지 (0) | 2019.05.28 |
---|---|
Enter로 full 만들기 (0) | 2012.04.03 |
이미지 뒤로 넘기기 (0) | 2010.11.26 |
풍차버튼 갤러리 (0) | 2010.06.07 |
New Button Gallery (0) | 2010.04.19 |