1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 2005-2007 Adobe Systems Incorporated
5//  All Rights Reserved.
6//
7//  NOTICE: Adobe permits you to use, modify, and distribute this file
8//  in accordance with the terms of the license agreement accompanying it.
9//
10////////////////////////////////////////////////////////////////////////////////
11
12package mx.controls.videoClasses
13{
14
15[ExcludeClass]
16
17/**
18 *  @private
19 */
20public class VideoPlayerQueuedCommand
21{
22	include "../../core/Version.as";
23
24    public static const PLAY:uint = 0;
25    public static const LOAD:uint = 1;
26    public static const PAUSE:uint = 2;
27    public static const STOP:uint = 3;
28    public static const SEEK:uint = 4;
29
30    public var type:uint;
31    public var url:String;
32    public var isLive:Boolean;
33    public var time:Number;
34    public var cuePoints:Array;
35
36    public function VideoPlayerQueuedCommand(type:uint, url:String = null, isLive:Boolean = false,
37                            time:Number = 0, cuePoints:Array = null)
38    {
39		super();
40
41        this.type = type;
42        this.url = url;
43        this.isLive = isLive;
44        this.time = time;
45        this.cuePoints = cuePoints;
46    }
47} // class QueuedCommand
48
49}
50