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,581
14년 전 조회 1,604
14년 전 조회 2,860
14년 전 조회 1,912
14년 전 조회 2,353
14년 전 조회 1,639
14년 전 조회 2,212
14년 전 조회 2,722
14년 전 조회 1,788
14년 전 조회 2,260
14년 전 조회 1,781
14년 전 조회 2,142
14년 전 조회 3,603
14년 전 조회 1,637
14년 전 조회 5,783
14년 전 조회 1,648
14년 전 조회 1,816
14년 전 조회 1,667
14년 전 조회 4,381
14년 전 조회 1,466
14년 전 조회 1,792
14년 전 조회 2,107
14년 전 조회 2,121
14년 전 조회 1,583
14년 전 조회 2,217
14년 전 조회 1,671
14년 전 조회 1,561
14년 전 조회 3,227
14년 전 조회 1,945
14년 전 조회 1,538
14년 전 조회 1,521
14년 전 조회 2,566
14년 전 조회 1,718
14년 전 조회 2,133
14년 전 조회 2,112
14년 전 조회 2,720
14년 전 조회 2,801
14년 전 조회 2,067
14년 전 조회 1,707
14년 전 조회 1,629
14년 전 조회 1,857
14년 전 조회 2,041
14년 전 조회 3,499
14년 전 조회 1,526
14년 전 조회 1,857
14년 전 조회 1,996
14년 전 조회 2,369
14년 전 조회 1,576
14년 전 조회 1,459
14년 전 조회 2,173
14년 전 조회 2,521
14년 전 조회 2,600
14년 전 조회 1,783
14년 전 조회 1,583
14년 전 조회 2,710
14년 전 조회 1,789
14년 전 조회 2,191
14년 전 조회 1,610
14년 전 조회 1,702
14년 전 조회 1,664
14년 전 조회 1,752
14년 전 조회 5,597
14년 전 조회 1,646
14년 전 조회 1,773
14년 전 조회 2,449
14년 전 조회 1,597
14년 전 조회 1,389
14년 전 조회 1,749
14년 전 조회 3,049
14년 전 조회 2,454
14년 전 조회 2,310
14년 전 조회 3,746
14년 전 조회 2,849
14년 전 조회 1,809
14년 전 조회 1,865
14년 전 조회 1,828
14년 전 조회 1,947
14년 전 조회 1,405
14년 전 조회 1,727
14년 전 조회 1,857
14년 전 조회 3,414
14년 전 조회 1,720
14년 전 조회 1,479
14년 전 조회 1,462
14년 전 조회 3,819
14년 전 조회 1,590
14년 전 조회 2,297
14년 전 조회 2,328
14년 전 조회 1,529
14년 전 조회 2,208
14년 전 조회 1,607
14년 전 조회 1,730
14년 전 조회 2,662
14년 전 조회 2,391
14년 전 조회 3,012
14년 전 조회 1,706
14년 전 조회 1,596
14년 전 조회 2,983
14년 전 조회 1,620
14년 전 조회 1,744