모든영상제작 을 마친후
도구툴에서 Rounded Rect 선택 shape 를 만든후 >> T 글쓰기 한후
서로 묶은후>group as movie clipe (시맥스1 : 스크립터. 시맥스2 :Movie Clip)
> Script 작성
① movie clip 에서 스크립터작성
on (press) {
toggleFullScreen();
}
② Scene-1 에서 Script 작성 합니다
onFrame (1) {
toggleFullScreen=function ()
{if (Stage.displayState == "normal")
{ Stage.displayState = "fullScreen"; }
else
{ Stage.displayState = "normal";}};
}
*** 위까지 풀스크린 스크립터 완성***
swf 파일로 저장후
계정에 올린다음
** 웹 사이트에 올린때는 <embed 작성시 allowfullscreen="true" 속성을 추가
예제) <embed src= "주소 " width=000 height=000 allowfullscreen="true">
위 FullScreen 은 Flash Player 버젼 9.028 버전이상 정상 작동됩니다