home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / pc / glossary.swf / scripts / __Packages / mx / controls / streamingmedia / VPlayBarTray.as < prev   
Encoding:
Text File  |  2005-02-24  |  410 b   |  17 lines

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