동영상/스위시작품

FullScreen(만들기)

장미부인 2012. 4. 28. 12:46

★FullScreen(만들기)
1.그림한장 불러오고(기존작품도 가능함)
2.T.선택-화면하단에 FullScreen 쓰고. 또.T.선택-Normal. 쓰고.2개선택-
   Grouping- Movie Clip=묶고 이름을Full로쓴다
3.outline에서 Full+를-하고
   normal-  1 프래임에  Remove  2프래임에 place
   Full screen  _1프래임에 place  2프래임에 remove

4.outline에서Full(선택)-아래글(복사)-스크립트(열고)-붙이기한다
  
onFrame (1) {
    stop();
    }
    onFrame (2) {
    stop();
    }


5.outline에서FullScreen(선택)-아래글(복사)-스크립트(열고)-붙이기한다
  
on (release) {
    gotoSceneAndPlay("Scene_1", 1);
    fscommand("FullScreen","true");
   
    Stage.displayState = "fullscreen";
      nextFrameAndPlay();
    }

6.outline에서Normal(선택)-아래글(복사)-스크립트(열고)-붙이기한다
  
on (release) {
    play();
    gotoSceneAndPlay("Scene_1", 1);
    fscommand("FullScreen","normal");
   
   Stage.displayState = "normal";
      nextFrameAndPlay();
   }

7. <embed src=   "계정주소"   width= 000 height=000  AllowFullscreen=true >

 

'동영상 > 스위시작품' 카테고리의 다른 글

불꽃  (0) 2012.06.07
불꽃  (0) 2012.06.07
봄과 아씨  (0) 2012.03.06
123  (0) 2012.03.06
봄과아씨  (0) 2012.03.06