Ignore:
Timestamp:
10/20/08 08:16:10 (5 years ago)
Author:
jeroen
Message:

merged 4.2 player to trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/as3/com/jeroenwijering/events/ModelStates.as

    r1 r88  
    11/** 
    22* 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. 
    35**/ 
    46package com.jeroenwijering.events { 
     
    810 
    911 
    10         /** Nothing has happened yet. **/ 
     12        /** Nothing happening. No playback and no file in memory. **/ 
    1113        public static var IDLE:String = "IDLE"; 
    1214        /** Buffering; will start to play when the buffer is full. **/ 
    1315        public static var BUFFERING:String = "BUFFERING"; 
    14         /** Playing back the mediafile. **/ 
     16        /** The file is being played back. **/ 
    1517        public static var PLAYING:String = "PLAYING"; 
    1618        /** Playback is paused. **/ 
    1719        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. **/ 
    1921        public static var COMPLETED:String = "COMPLETED"; 
    2022 
Note: See TracChangeset for help on using the changeset viewer.