home *** CD-ROM | disk | FTP | other *** search
/ The Complete Idiot's Guide to Microsoft Excel 2010 / CIGExcel.iso / Videos / Flash / controller.swf / scripts / __Packages / com / techsmith / widgets / Movable.as
Encoding:
Text File  |  2010-09-09  |  188 b   |  13 lines

  1. class com.techsmith.widgets.Movable extends MovieClip
  2. {
  3.    function Movable()
  4.    {
  5.       super();
  6.    }
  7.    function move(x, y)
  8.    {
  9.       this._x = x;
  10.       this._y = y;
  11.    }
  12. }
  13.