home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / mac / glossary.swf / scripts / __Packages / mx / controls / streamingmedia / AbstractPlayer.as next >
Text File  |  2005-02-24  |  335b  |  20 lines

  1. class mx.controls.streamingmedia.AbstractPlayer
  2. {
  3.    function AbstractPlayer()
  4.    {
  5.       this._playing = false;
  6.    }
  7.    function isPlaying()
  8.    {
  9.       return this._playing;
  10.    }
  11.    function get playing()
  12.    {
  13.       return this.isPlaying();
  14.    }
  15.    function setPlaying(flag)
  16.    {
  17.       this._playing = flag;
  18.    }
  19. }
  20.