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

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