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

flv파일 주소로 연속재생과 하나만 재생하는 편집방법과 swf파일 주소로 편집하는 방법

by 어린양01 2016. 2. 15.

flv파일 주소로 연속재생과 하나만 재생하는 편집방법과 swf파일 주소로 편집하는 방법

 

연속재생 스크립트 (가감할수있다)
Outline의 아래 Insert→External media클릭 Properties창의
   Width=720 Height=540 이름 flv(중요)로 무비클립으로 묶고 이름
   FLV로 Script 창에 아래 스크립트 붙여넣고 실행해 본다

(아래스크립트는 아름다운 겨울이야기 연속(개 썰매1~4와 라플란드1~6)
여기서는 10개 했는데 가감할수 있습니다

 

FLV에 붙여넣을 스크립트소스


onSelfEvent (load) {
    autoPass = 1;
    flv.onPlayStop = function() {
        autoPass ? play() : flv._ns.seek(0);
    }
    flv.onPress = function() {
        flv.playing ? flv.pause() : flv.play();
    }
    f1="https://t1.daumcdn.net/cfile/cafe/273D743E52C2379422?download";
    f2="https://t1.daumcdn.net/cfile/cafe/2366654152C237BC15?download";
    f3="https://t1.daumcdn.net/cfile/cafe/2235C54652C238011B?download";
    f4="https://t1.daumcdn.net/cfile/cafe/261E453F52C2383824?download";
    f5="https://t1.daumcdn.net/cfile/cafe/2131E94852C27EC124?download"; 
    f6="https://t1.daumcdn.net/cfile/cafe/2671324F52C27EF808?download";
    f7="https://t1.daumcdn.net/cfile/cafe/2117454C52C27F4D25?download";
    f8="https://t1.daumcdn.net/cfile/cafe/265E5F4E52C27F7A02?download";
    f9="https://t1.daumcdn.net/cfile/cafe/2641F24E52C27FBB0E?download";   
    f10="https://t1.daumcdn.net/cfile/cafe/22078C4C52C27FEA2A?download";
    }
onFrame (1) {
    stop();
    flv.play(f1);
}
onFrame (2) {
    stop();
    flv.play(f2);
}
onFrame (3) {
    stop();
    flv.play(f3);
}
onFrame (4) {
    stop();
    flv.play(f4);
}
onFrame (5) {
    stop();
    flv.play(f5);
}
onFrame (6) {
    stop();
    flv.play(f6);
}
onFrame (7) {
    stop();
    flv.play(f7);
}
onFrame (8) {
    stop();
    flv.play(f8);
}
onFrame (9) {
    stop();
    flv.play(f9);
}

onFrame (10) {
    stop();
    flv.play(f10);
}

 

 

 

하나만 연속 재생되는 편집방법

Outline의 아래 Insert→External media클릭 Properties창의
   Width=720 Height=540 위 URL에 주소 붙여넣고 아래 스크립트
   소스 복사해다 붙여넣고 소스의 주소도 위와 같은 주소로 바꿔
   주고 무비클립으로 묶는다

 

External MediaLV에 붙여넣을 스크립트소스

 

onSelfEvent (load) {
Src = "https://t1.daumcdn.net/cfile/cafe/2131E94852C27EC124?download";
play(Src);
onPlayStop = function() {
            play(Src);
}
onPress = function() {
playing ? (pause()) : (play());
}
}

 

 

 

하나만 연속 재생되는 편집방법 또 다른것

onSelfEvent (load) {
    onPlayStop = function(){
      play("http://pms39119.netorage.com:8711/harddisk/user/my Polder/2014.Educational materials/New Project 2014.07.11/Star.flv");
    }
    onPlayStop();
}

 

 

 

 

swf파일 주소로 여러개 한꺼번에 편집하는방법(로드무비)

 

1. 빈무비클립 불러와 O=X 좌상 X=0 Y=0,에 놓고 Script창의
   AddScript→External files and data→Load/unload movie clip→
   loadmovie(...)클릭하고 위 URL에 swf주소 복사해다 붙여넣고 작
   업한 무비클립 복사해서 원하는만큼 붙여넣고 주소 바꿔주고
   모두선택 무비클립으로 묶고 셋트메뉴 준다. auto값은 영상에따라
   주고  보여주기 위한 소스는 200 정도만 줘도 충분하다(하나만 넣을
   때는 하나만 만든다)