컴퓨터A·S및 IT인터넷

[스크랩] Full Screen 소스 와 견본 swi첨부

나오이시디 2012. 4. 19. 11:23
반응형


 

 

첨부파일 Full Screen-1.swf

첨부파일 Full Screen-1.swi

첨부파일 Full Screen-2.sbk

첨부파일 Full Screen-2.swf

 

//

 

1. 화면 적당한 곳에  " Full Screen "  라고 입력함

 

2. [Copy Object] [Paste in Place]하고  text 내용을  " Normal"  로 바꿈

 

3. 두 개를 [Convert to Button],   Over state와 Down State에 check 하고 각각

    이름을 Normal,   Full Screen으로 바꿈    (Normal이 위  Full Screen이 아래)

    다시 [Grouping Movie Clip]이름을  text  로 함

 

4. + text의 옵션을 열고 Timeline에서

    "Normal" 의 1프레임에 [Remove]  2프레임에 [Place]

    "Full Screen" 의 1프레임에 [Place]  2프레임에 [Remove]

   _ Text의 1프레임과 2프레임에 [Stop]

 

5. + text 의 옵션을 열고 그 아래의 normal 선택하고 script창 열고 다음을 [붙이기]함

    on (release) {

        play();

        gotoSceneAndPlay("Scene_1", 1);

        fscommand("FullScreen","normal");

        

      Stage.displayState = "normal";

        nextFrameAndPlay();

    }

     

6. Full screen을 선택하고 다음을 [붙이기] 함

    on (release) {

        gotoSceneAndPlay("Scene_1", 1);

        fscommand("FullScreen","true");

        

     Stage.displayState = "fullscreen";

        nextFrameAndPlay();

        

    }

7. Scene에 붙이는 소스

     

    onFrame (1) {

          toggleFullScreen=function ()

          {if (Stage.displayState == "normal")

          { Stage.displayState = "fullScreen"; }

           else

          { Stage.displayState = "normal";}};

        }

     

8. 게시판에 올릴때 사이트에 등록된 소스를 아래와 같이 붙여넣는다 

 

<embed src="https://t1.daumcdn.net/cfile/cafe/1135D7064987C7D3DC?download" width="650" height="450" type="application/x-shockwave-flash" scale="exactfit" allowfullscreen="true">

출처 : 청풍 옹달샘
글쓴이 : 청풍 원글보기
메모 :
반응형