home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / controls / videoClasses / VideoPlayerQueuedCommand.as < prev   
Encoding:
Text File  |  2010-06-23  |  1.0 KB  |  43 lines

  1. package mx.controls.videoClasses
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class VideoPlayerQueuedCommand
  8.    {
  9.       mx_internal static const VERSION:String = "3.5.0.12683";
  10.       
  11.       public static const PLAY:uint = 0;
  12.       
  13.       public static const LOAD:uint = 1;
  14.       
  15.       public static const PAUSE:uint = 2;
  16.       
  17.       public static const STOP:uint = 3;
  18.       
  19.       public static const SEEK:uint = 4;
  20.       
  21.       public var cuePoints:Array;
  22.       
  23.       public var isLive:Boolean;
  24.       
  25.       public var type:uint;
  26.       
  27.       public var time:Number;
  28.       
  29.       public var url:String;
  30.       
  31.       public function VideoPlayerQueuedCommand(param1:uint, param2:String = null, param3:Boolean = false, param4:Number = 0, param5:Array = null)
  32.       {
  33.          super();
  34.          this.type = param1;
  35.          this.url = param2;
  36.          this.isLive = param3;
  37.          this.time = param4;
  38.          this.cuePoints = param5;
  39.       }
  40.    }
  41. }
  42.  
  43.