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,670
14년 전 조회 1,703
14년 전 조회 2,923
14년 전 조회 1,988
14년 전 조회 2,441
14년 전 조회 1,708
14년 전 조회 2,281
14년 전 조회 2,798
14년 전 조회 1,861
14년 전 조회 2,334
14년 전 조회 1,848
14년 전 조회 2,226
14년 전 조회 3,689
14년 전 조회 1,705
14년 전 조회 5,851
14년 전 조회 1,721
14년 전 조회 1,889
14년 전 조회 1,729
14년 전 조회 4,461
14년 전 조회 1,533
14년 전 조회 1,862
14년 전 조회 2,179
14년 전 조회 2,189
14년 전 조회 1,660
14년 전 조회 2,291
14년 전 조회 1,741
14년 전 조회 1,630
14년 전 조회 3,307
14년 전 조회 2,023
14년 전 조회 1,610
14년 전 조회 1,599
14년 전 조회 2,639
14년 전 조회 1,805
14년 전 조회 2,207
14년 전 조회 2,196
14년 전 조회 2,799
14년 전 조회 2,880
14년 전 조회 2,148
14년 전 조회 1,778
14년 전 조회 1,703
14년 전 조회 1,931
14년 전 조회 2,109
14년 전 조회 3,588
14년 전 조회 1,608
14년 전 조회 1,943
14년 전 조회 2,076
14년 전 조회 2,439
14년 전 조회 1,665
14년 전 조회 1,513
14년 전 조회 2,238
14년 전 조회 2,586
14년 전 조회 2,661
14년 전 조회 1,839
14년 전 조회 1,640
14년 전 조회 2,759
14년 전 조회 1,852
14년 전 조회 2,247
14년 전 조회 1,673
14년 전 조회 1,756
14년 전 조회 1,722
14년 전 조회 1,811
14년 전 조회 5,654
14년 전 조회 1,691
14년 전 조회 1,830
14년 전 조회 2,504
14년 전 조회 1,644
14년 전 조회 1,439
14년 전 조회 1,798
14년 전 조회 3,105
14년 전 조회 2,514
14년 전 조회 2,360
14년 전 조회 3,796
14년 전 조회 2,901
14년 전 조회 1,870
14년 전 조회 1,917
14년 전 조회 1,882
14년 전 조회 1,998
14년 전 조회 1,465
14년 전 조회 1,784
14년 전 조회 1,908
14년 전 조회 3,470
14년 전 조회 1,773
14년 전 조회 1,531
14년 전 조회 1,513
14년 전 조회 3,873
14년 전 조회 1,650
14년 전 조회 2,354
14년 전 조회 2,387
14년 전 조회 1,578
14년 전 조회 2,255
14년 전 조회 1,649
14년 전 조회 1,787
14년 전 조회 2,716
14년 전 조회 2,454
14년 전 조회 3,082
14년 전 조회 1,784
14년 전 조회 1,660
14년 전 조회 3,036
14년 전 조회 1,673
14년 전 조회 1,784