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,658
14년 전 조회 1,684
14년 전 조회 2,910
14년 전 조회 1,980
14년 전 조회 2,427
14년 전 조회 1,696
14년 전 조회 2,267
14년 전 조회 2,784
14년 전 조회 1,848
14년 전 조회 2,320
14년 전 조회 1,844
14년 전 조회 2,206
14년 전 조회 3,674
14년 전 조회 1,693
14년 전 조회 5,843
14년 전 조회 1,707
14년 전 조회 1,873
14년 전 조회 1,721
14년 전 조회 4,444
14년 전 조회 1,523
14년 전 조회 1,848
14년 전 조회 2,168
14년 전 조회 2,173
14년 전 조회 1,647
14년 전 조회 2,279
14년 전 조회 1,728
14년 전 조회 1,617
14년 전 조회 3,294
14년 전 조회 2,012
14년 전 조회 1,599
14년 전 조회 1,583
14년 전 조회 2,628
14년 전 조회 1,791
14년 전 조회 2,190
14년 전 조회 2,189
14년 전 조회 2,784
14년 전 조회 2,870
14년 전 조회 2,131
14년 전 조회 1,765
14년 전 조회 1,693
14년 전 조회 1,914
14년 전 조회 2,101
14년 전 조회 3,579
14년 전 조회 1,589
14년 전 조회 1,927
14년 전 조회 2,056
14년 전 조회 2,433
14년 전 조회 1,650
14년 전 조회 1,499
14년 전 조회 2,231
14년 전 조회 2,576
14년 전 조회 2,654
14년 전 조회 1,831
14년 전 조회 1,631
14년 전 조회 2,751
14년 전 조회 1,839
14년 전 조회 2,237
14년 전 조회 1,661
14년 전 조회 1,746
14년 전 조회 1,708
14년 전 조회 1,800
14년 전 조회 5,645
14년 전 조회 1,683
14년 전 조회 1,819
14년 전 조회 2,491
14년 전 조회 1,632
14년 전 조회 1,430
14년 전 조회 1,790
14년 전 조회 3,095
14년 전 조회 2,504
14년 전 조회 2,348
14년 전 조회 3,786
14년 전 조회 2,892
14년 전 조회 1,859
14년 전 조회 1,907
14년 전 조회 1,872
14년 전 조회 1,988
14년 전 조회 1,454
14년 전 조회 1,777
14년 전 조회 1,900
14년 전 조회 3,456
14년 전 조회 1,763
14년 전 조회 1,522
14년 전 조회 1,505
14년 전 조회 3,862
14년 전 조회 1,635
14년 전 조회 2,342
14년 전 조회 2,374
14년 전 조회 1,570
14년 전 조회 2,244
14년 전 조회 1,642
14년 전 조회 1,777
14년 전 조회 2,703
14년 전 조회 2,447
14년 전 조회 3,069
14년 전 조회 1,771
14년 전 조회 1,649
14년 전 조회 3,026
14년 전 조회 1,657
14년 전 조회 1,774