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,503
14년 전 조회 1,522
14년 전 조회 2,767
14년 전 조회 1,830
14년 전 조회 2,268
14년 전 조회 1,560
14년 전 조회 2,135
14년 전 조회 2,637
14년 전 조회 1,711
14년 전 조회 2,194
14년 전 조회 1,716
14년 전 조회 2,076
14년 전 조회 3,527
14년 전 조회 1,560
14년 전 조회 5,712
14년 전 조회 1,573
14년 전 조회 1,739
14년 전 조회 1,593
14년 전 조회 4,287
14년 전 조회 1,388
14년 전 조회 1,723
14년 전 조회 2,021
14년 전 조회 2,033
14년 전 조회 1,523
14년 전 조회 2,130
14년 전 조회 1,596
14년 전 조회 1,479
14년 전 조회 3,132
14년 전 조회 1,880
14년 전 조회 1,466
14년 전 조회 1,445
14년 전 조회 2,486
14년 전 조회 1,660
14년 전 조회 2,059
14년 전 조회 2,043
14년 전 조회 2,655
14년 전 조회 2,721
14년 전 조회 1,992
14년 전 조회 1,631
14년 전 조회 1,558
14년 전 조회 1,772
14년 전 조회 1,968
14년 전 조회 3,427
14년 전 조회 1,442
14년 전 조회 1,784
14년 전 조회 1,914
14년 전 조회 2,289
14년 전 조회 1,499
14년 전 조회 1,392
14년 전 조회 2,089
14년 전 조회 2,440
14년 전 조회 2,521
14년 전 조회 1,709
14년 전 조회 1,496
14년 전 조회 2,620
14년 전 조회 1,712
14년 전 조회 2,092
14년 전 조회 1,530
14년 전 조회 1,618
14년 전 조회 1,580
14년 전 조회 1,673
14년 전 조회 5,517
14년 전 조회 1,559
14년 전 조회 1,694
14년 전 조회 2,369
14년 전 조회 1,522
14년 전 조회 1,319
14년 전 조회 1,668
14년 전 조회 2,956
14년 전 조회 2,378
14년 전 조회 2,233
14년 전 조회 3,672
14년 전 조회 2,762
14년 전 조회 1,730
14년 전 조회 1,787
14년 전 조회 1,757
14년 전 조회 1,865
14년 전 조회 1,335
14년 전 조회 1,648
14년 전 조회 1,781
14년 전 조회 3,352
14년 전 조회 1,662
14년 전 조회 1,400
14년 전 조회 1,398
14년 전 조회 3,746
14년 전 조회 1,521
14년 전 조회 2,219
14년 전 조회 2,252
14년 전 조회 1,452
14년 전 조회 2,118
14년 전 조회 1,533
14년 전 조회 1,657
14년 전 조회 2,582
14년 전 조회 2,318
14년 전 조회 2,927
14년 전 조회 1,632
14년 전 조회 1,525
14년 전 조회 2,896
14년 전 조회 1,542
14년 전 조회 1,672