home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / pc / gloss.swf / scripts / __Packages / mx / controls / streamingmedia / VMiniPlayBarTray.as < prev    next >
Encoding:
Text File  |  2005-02-26  |  509 b   |  21 lines

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