home *** CD-ROM | disk | FTP | other *** search
/ Champak 108 / jogo-disk-108.iso / Games / goal_2.swf / scripts / DefineSprite_427 / frame_1 / DoAction.as
Text File  |  2010-05-15  |  370b  |  15 lines

  1. function hideForm()
  2. {
  3.    formClip._visible = false;
  4. }
  5. fakeButton.useHandCursor = false;
  6. thankYouClip._visible = false;
  7. formClip.sendButton.onRelease = function()
  8. {
  9.    formClip.alphaTo(0,1,"linear",0,hideForm);
  10.    thankYouClip._visible = true;
  11.    thankYouClip.alphaTo(100,1,"linear",1);
  12.    thankYouClip.clickHere._visible = true;
  13.    formClip.sendMail();
  14. };
  15.