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

  1. class mx.controls.streamingmedia.VMiniPlayBarTray extends MovieClip
  2. {
  3.    function VMiniPlayBarTray()
  4.    {
  5.       super();
  6.    }
  7.    function getHeight()
  8.    {
  9.       return this._bottom._y + this._bottom._height;
  10.    }
  11.    function setHeight(aHeight)
  12.    {
  13.       this._middle._y = this._top._height;
  14.       this._middle._height = aHeight - this._top._height - this._bottom._height;
  15.       this._bottom._y = this._middle._y + this._middle._height;
  16.    }
  17. }
  18.