home *** CD-ROM | disk | FTP | other *** search
/ Champak 110 / jogo-disk-110.iso / Games / tobby_sucuri.swf / scripts / DefineSprite_216_debugIn / frame_1 / DoAction.as
Text File  |  2008-11-12  |  312b  |  22 lines

  1. function disp()
  2. {
  3.    this._visible = true;
  4.    this._y = 100;
  5.    _root.debugInFlg = true;
  6. }
  7. function unDisp()
  8. {
  9.    this._visible = false;
  10.    this._y = -1000;
  11.    _root.debugInFlg = false;
  12. }
  13. if(_root.debugInFlg)
  14. {
  15.    this._y = 100;
  16.    this._visible = true;
  17. }
  18. else
  19. {
  20.    this._visible = false;
  21. }
  22.