home *** CD-ROM | disk | FTP | other *** search
/ Sears Catalog 2006 Spring/Summer (French Canadian) / SearsCanada-AutomneEte2006-FrenchVersion-WinMac.bin / fr / index.swf / scripts / frame_1 / DoAction_2.as next >
Text File  |  2005-12-06  |  397b  |  17 lines

  1. function goFunction()
  2. {
  3.    goPage = Number(pageNum.text);
  4.    if(!isNaN(goPage) && goPage <= 1084 && goPage >= 1)
  5.    {
  6.       trace("goPage = " + goPage + "anymore?");
  7.       trace("goPage = " + goPage + "anymore?");
  8.       goIndexPage(goPage);
  9.    }
  10.    else
  11.    {
  12.       pageNotFoundClip._visible = true;
  13.       this.gotoAndStop("bttnsOff");
  14.       _parent.gotoAndStop("bttnsOff");
  15.    }
  16. }
  17.