Changeset 88 for trunk/as3/com/jeroenwijering/events/ModelStates.as
- Timestamp:
- 10/20/08 08:16:10 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/as3/com/jeroenwijering/events/ModelStates.as
r1 r88 1 1 /** 2 2 * Static typed list of all possible model states, fired with the 'state' event. 3 * 4 * Import this class into your project/plugin for strong-typed api references. 3 5 **/ 4 6 package com.jeroenwijering.events { … … 8 10 9 11 10 /** Nothing ha s happened yet. **/12 /** Nothing happening. No playback and no file in memory. **/ 11 13 public static var IDLE:String = "IDLE"; 12 14 /** Buffering; will start to play when the buffer is full. **/ 13 15 public static var BUFFERING:String = "BUFFERING"; 14 /** Playing back the mediafile. **/16 /** The file is being played back. **/ 15 17 public static var PLAYING:String = "PLAYING"; 16 18 /** Playback is paused. **/ 17 19 public static var PAUSED:String = "PAUSED"; 18 /** End of mediafile has been reached. **/20 /** End of mediafile has been reached. No playback but the file is in memory. **/ 19 21 public static var COMPLETED:String = "COMPLETED"; 20 22
Note: See TracChangeset
for help on using the changeset viewer.
