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

  1. class mx.controls.streamingmedia.VolumeControl extends MovieClip
  2. {
  3.    var _handle;
  4.    function VolumeControl()
  5.    {
  6.       super();
  7.       this.init();
  8.    }
  9.    function init()
  10.    {
  11.       this.tabEnabled = false;
  12.       this.tabChildren = true;
  13.    }
  14.    function getHandle()
  15.    {
  16.       return this._handle;
  17.    }
  18. }
  19.