본문 바로가기
  • 오직 예수 그리스도
스위시세상/스위시 고급

Gallery slide만들기

by 어린양01 2010. 9. 16.

★,Gallery slide만들기
1.movie 700/480  
2.contant페널에 이미지 (600/480) 10장 넣기
3.화면에 10장을넣고 
이미지가600/480 일때에는 모두선택 윗쪽정열 오른쪽정열
이미지크기가 다를땐 한장한장 앵커포인트=좌상.100(x) .0(y).600(width).480(hight) 로 마춘다
4.모두선택 
※break into pieces ※Regular grid에놓고 ※Allow non ..책크 
cascade order=두번째 책크  columns=30 rows=1 ok
5.img1 1프래임에 Appear into position-swirl in(duration=50)
이효과를 복사 나머지9장에 모두 붙인다
6.모두를 convert to movie clip
7.다시 모두를 group as movie clip 이름을 "imagemc"
8.imagemc를열고 1.2.3.셋트메뉴 imagemc 1프래임에만 movie control stop
9.사각shape  solid=연록색 line=0 흰색 
위치-좌상.0.0.100.40(-위참조)
10.복사 붙이기 solid=록색 line=0 흰색 
위치-좌상.0.40.100.40
11.text "Gallery1"-아래것."Gallery2" 써서 위 두shape 안에넣고
같은조로 grop as shape "아니요" 이름을"bt1. bt2.로한다
12.복사 제자리붙이기  bt1+bt1 을 movie clip하고 이름을"btn1"
                     bt2+bt2 을 movie clip하고 이름을"btn2"
13.btn1열고 위에것을 bt2로고친다 bt1 1프래임에 plase 2프래임에 remove  btn1-1.2.프래임에stop
   btn2열고 위에것을 bt4로  아래것을bt3고친다  bt3 2프래임에 place  btn2-1.2.프래임에stop
14.화면안에 사각 shape-앵커포인트-좌상 (x=0 y=80 w=100 h=80) 복사붙이기 모두10장
 y좌표 값만80.160.240.320.400.-180.-160.-240.-320.-400  이름을 밑부터 b1.b2.....b10 으로한다
이미지와 짝마추기
15.b1.b2...b5와 btn1 을movie clip하고 이름을"gallery1"
   b6.b7...b10와 btn2 을movie clip하고 이름을"gallery2"
15.버튼에 script 넣기
gallery1안에 b1에
ⓘ.Add script-MovieControl-Gotoandstop-gotoAndstop(Frame) 
frame=1
이것을 복사 b2.....b10 모두 붙이고 frame수 2.3.4.....10 로고친다
scene-1안에 

onFrame (1) {
    Object.prototype.slide = function (speed, targety){
     this.onEnterFrame = function (){
        this._y += speed * (targety - this._y);
         };
    };
}
btn1안에 bt1에

on (press) {
    _root.gallery1.slide(0.2, 40);
    _root.gallery2.slide(0.2, -400);
    gotoAndStop(2);
}
bt2에

on (press) {
    _root.gallery1.slide(0.2, 440);
   gotoAndStop(1);
}
btn2안에 bt3에

on (press) {
    _root.gallery1.slide(0.2, 440);
    _root.gallery2.slide(0.2, 0);
    gotoAndStop(2);
}
bt4에

on (press) {
  _root.gallery2.slide(0.2, -400);
    gotoAndStop(1);
}
gallery1-앵커포인트-좌상 x=0 y=440
gallery2-앵커포인트-좌상 x=0 y=-400

'스위시세상 > 스위시 고급' 카테고리의 다른 글

★튜립  (0) 2010.09.16
★,Show-hide slide버튼겔러리  (0) 2010.09.16
큐브 영상 만들기  (0) 2010.09.10
ymouse(모지스)  (0) 2010.09.10
도장만들기 음각도장  (0) 2010.09.07