v

[ActionScript 3.0] , MovieClipWithPlaying , 현제 무비클립이 재생 중인지 체크하기 위해서

[설명 및 사용방법]
flash 컨텐츠 작업을 하다 보면 하당 movieclip이 재생 중인 아니면 정지해 있는지 알아야 할 경우가 생김니다.
flash animation 을 다른 무비클립에서 로드를 하여 플레이를 시킨다고 가정 한다면, 컨텐츠 플레이어를 제작 할 경우 유용하게 이용 할 수 있습니다.
 
사용방법은 해당 flash animation 컨텐츠이 document class 를 MovieClipWithIsPlaying  으로 지정 해주고 사용 하면 됩니다.
 
 
package com.visualp{
 
 import flash.display.*;
 import flash.text.*;
 import flash.external.ExternalInterface;
 import flash.events.*;
 import flash.net.*;
 public class MovieClipWithIsPlaying extends MovieClip {
  
  private var _isPlaying:Boolean = true;
     
  
  public function get isPlaying():Boolean {
   return _isPlaying;
  }
  
  /**
   * Constructor
   */
  
  public function MovieClipWithIsPlaying(){
   super();
  }

  public override function gotoAndPlay(frame:Object, scene:String = null):void {
   _isPlaying = true;
   super.gotoAndPlay(frame, scene);
  }
  
  public override function gotoAndStop(frame:Object, scene:String = null):void {
   _isPlaying = false;
   super.gotoAndStop(frame, scene);
  }
  
  public override function nextFrame():void {
   _isPlaying = false;
   super.nextFrame();
  }
  
  public override function nextScene():void {
   _isPlaying = true;
   super.nextScene();
  }
  
  public override function play():void {
   _isPlaying = true;
   super.play();
  }
  
  public override function prevFrame():void {
   _isPlaying = false;
   super.prevFrame();
  }
  
  public override function prevScene():void {
   _isPlaying = true;
   super.prevScene();
  }
  
  public override function stop():void {
   _isPlaying = false;
   super.stop();
  }
 }
}
|

댓글 1개

감사합니다~~
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,116
14년 전 조회 1,152
14년 전 조회 2,405
14년 전 조회 1,448
14년 전 조회 1,928
14년 전 조회 1,181
14년 전 조회 1,751
14년 전 조회 2,286
14년 전 조회 1,340
14년 전 조회 1,803
14년 전 조회 1,339
14년 전 조회 1,703
14년 전 조회 3,137
14년 전 조회 1,192
14년 전 조회 5,399
14년 전 조회 1,182
14년 전 조회 1,366
14년 전 조회 1,206
14년 전 조회 3,925
14년 전 조회 1,002
14년 전 조회 1,345
14년 전 조회 1,634
14년 전 조회 1,656
14년 전 조회 1,126
14년 전 조회 1,754
14년 전 조회 1,211
14년 전 조회 1,093
14년 전 조회 2,760
14년 전 조회 1,500
14년 전 조회 1,100
14년 전 조회 1,079
14년 전 조회 2,125
14년 전 조회 1,291
14년 전 조회 1,696
14년 전 조회 1,680
14년 전 조회 2,333
14년 전 조회 2,352
14년 전 조회 1,623
14년 전 조회 1,243
14년 전 조회 1,202
14년 전 조회 1,418
14년 전 조회 1,599
14년 전 조회 3,124
14년 전 조회 1,064
14년 전 조회 1,400
14년 전 조회 1,537
14년 전 조회 1,917
14년 전 조회 1,119
14년 전 조회 1,019
14년 전 조회 1,728
14년 전 조회 2,090
14년 전 조회 2,190
14년 전 조회 1,417
14년 전 조회 1,163
14년 전 조회 2,305
14년 전 조회 1,389
14년 전 조회 1,720
14년 전 조회 1,176
14년 전 조회 1,235
14년 전 조회 1,260
14년 전 조회 1,330
14년 전 조회 5,206
14년 전 조회 1,218
14년 전 조회 1,354
14년 전 조회 2,024
14년 전 조회 1,165
14년 전 조회 946
14년 전 조회 1,349
14년 전 조회 2,626
14년 전 조회 2,069
14년 전 조회 1,919
14년 전 조회 3,404
14년 전 조회 2,454
14년 전 조회 1,407
14년 전 조회 1,442
14년 전 조회 1,425
14년 전 조회 1,552
14년 전 조회 995
14년 전 조회 1,319
14년 전 조회 1,442
14년 전 조회 3,045
14년 전 조회 1,326
14년 전 조회 1,063
14년 전 조회 1,060
14년 전 조회 3,400
14년 전 조회 1,188
14년 전 조회 1,905
14년 전 조회 2,004
14년 전 조회 1,110
14년 전 조회 1,815
14년 전 조회 1,210
14년 전 조회 1,356
14년 전 조회 2,288
14년 전 조회 2,063
14년 전 조회 2,627
14년 전 조회 1,333
14년 전 조회 1,207
14년 전 조회 2,582
14년 전 조회 1,232
14년 전 조회 1,329