home *** CD-ROM | disk | FTP | other *** search
- package mx.controls.videoClasses
- {
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class VideoPlayerQueuedCommand
- {
- mx_internal static const VERSION:String = "3.5.0.12683";
-
- public static const PLAY:uint = 0;
-
- public static const LOAD:uint = 1;
-
- public static const PAUSE:uint = 2;
-
- public static const STOP:uint = 3;
-
- public static const SEEK:uint = 4;
-
- public var cuePoints:Array;
-
- public var isLive:Boolean;
-
- public var type:uint;
-
- public var time:Number;
-
- public var url:String;
-
- public function VideoPlayerQueuedCommand(param1:uint, param2:String = null, param3:Boolean = false, param4:Number = 0, param5:Array = null)
- {
- super();
- this.type = param1;
- this.url = param2;
- this.isLive = param3;
- this.time = param4;
- this.cuePoints = param5;
- }
- }
- }
-
-