home *** CD-ROM | disk | FTP | other *** search
/ Geek Games #12 / GEGA012.iso / eroticos / spankthebooty.swf / scripts / __Packages / AlertBox.as next >
Text File  |  2005-10-13  |  363b  |  19 lines

  1. class AlertBox extends MovieClip
  2. {
  3.    function AlertBox()
  4.    {
  5.       var _loc1_ = this;
  6.       super();
  7.       _loc1_._visible = false;
  8.       _loc1_.ok_btn.onRelease = function()
  9.       {
  10.          this._parent._visible = false;
  11.       };
  12.    }
  13.    function alert(message)
  14.    {
  15.       this.message_txt.text = message;
  16.       this._visible = true;
  17.    }
  18. }
  19.