source: trunk/fl5/src/com/longtailvideo/jwplayer/events/PlaylistEvent.as @ 292

Revision 292, 1.4 KB checked in by pablo, 4 years ago (diff)

Base MediaSource class
Media event model

Line 
1package com.longtailvideo.jwplayer.events {
2       
3
4        /**
5         * Event class thrown by the Playlist
6         *
7         * @see com.longtailvideo.jwplayer.model.Playlist
8         * @author Pablo Schklowsky
9         */
10        public class PlaylistEvent extends PlayerEvent {
11               
12                /**
13                 * The PlaylistEvent.JWPLAYER_PLAYLIST_LOADED constant defines the value of the
14                 * <code>type</code> property of the event object
15                 * for a <code>jwplayerPlaylistLoaded</code> event.
16                 *
17                 * @see com.longtailvideo.jwplayer.player.Player
18                 * @eventType jwplayerPlaylistLoaded
19                 */
20                public static var JWPLAYER_PLAYLIST_LOADED:String = "jwplayerPlaylistLoaded";
21
22                /**
23                 * The PlaylistEvent.JWPLAYER_PLAYLIST_UPDATED constant defines the value of the
24                 * <code>type</code> property of the event object
25                 * for a <code>jwplayerPlaylistUpdated</code> event.
26                 *
27                 * @see com.longtailvideo.jwplayer.player.Player
28                 * @eventType jwplayerPlaylistUpdated
29                 */
30                public static var JWPLAYER_PLAYLIST_UPDATED:String = "jwplayerPlaylistUpdated";
31
32                /**
33                 * The PlaylistEvent.JWPLAYER_PLAYLIST_ITEM constant defines the value of the
34                 * <code>type</code> property of the event object
35                 * for a <code>jwplayerPlaylistItem</code> event.
36                 *
37                 * @see com.longtailvideo.jwplayer.player.Player
38                 * @eventType jwplayerPlaylistItem
39                 */
40                public static var JWPLAYER_PLAYLIST_ITEM:String = "jwplayerPlaylistItem";
41
42                public function PlaylistEvent(type:String) {
43                        super(type);
44                }
45               
46        }
47}
Note: See TracBrowser for help on using the repository browser.