home *** CD-ROM | disk | FTP | other *** search
/ T-Online 6 / T-Online.iso / Animation / content / intro / intro.swf / scripts / __Packages / components / ui / GenericUIComponent.as next >
Encoding:
Text File  |  2005-10-20  |  338 b   |  20 lines

  1. class components.ui.GenericUIComponent extends MovieClip
  2. {
  3.    var dataObj;
  4.    function GenericUIComponent()
  5.    {
  6.       super();
  7.    }
  8.    function moveTo(x, y)
  9.    {
  10.       this._x = x;
  11.       undefined;
  12.       this._y = y;
  13.       undefined;
  14.    }
  15.    function setDataProvider(dataObj)
  16.    {
  17.       this.dataObj = dataObj;
  18.    }
  19. }
  20.