home *** CD-ROM | disk | FTP | other *** search
/ i·claim - visualizing argument / ICLAIM.ISO / mac / t_02.swf / scripts / __Packages / mx / controls / streamingmedia / HPlayBarTray.as < prev    next >
Text File  |  2005-02-25  |  354b  |  14 lines

  1. class mx.controls.streamingmedia.HPlayBarTray extends MovieClip
  2. {
  3.    function HPlayBarTray()
  4.    {
  5.       super();
  6.    }
  7.    function setWidth(aWidth)
  8.    {
  9.       this._middle._x = this._left._width;
  10.       this._middle._width = aWidth - this._left._width - this._right._width;
  11.       this._right._x = this._middle._x + this._middle._width;
  12.    }
  13. }
  14.