home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 September / CHIP0903.ISO / t-pay / 1_01.swf / scripts / DefineSprite_1 / frame_1 / DoAction.as
Encoding:
Text File  |  2002-12-18  |  379 b   |  24 lines

  1. function fadeOut()
  2. {
  3.    this._fadeAction = true;
  4. }
  5. function onInit()
  6. {
  7.    this._fadeAction = false;
  8. }
  9. function onUpdate()
  10. {
  11.    if(this._fadeAction)
  12.    {
  13.       if(_parent.animation._alpha > 0)
  14.       {
  15.          _parent.animation._alpha -= 7;
  16.       }
  17.       else
  18.       {
  19.          this._fadeAction = false;
  20.          _parent.animation._alpha = 0;
  21.       }
  22.    }
  23. }
  24.