home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 August / WPCAUG96.ISO / database / power.dir / 00023.ls < prev    next >
Encoding:
Text File  |  1996-06-13  |  357 b   |  14 lines

  1. on mouseDown
  2.   global gMakerName, gMakerNum
  3.   puppetSound("click")
  4.   updateStage()
  5.   set tmp to line the mouseLine of field "Filenames2"
  6.   set gMakerName to tmp
  7.   set gMakerNum to NameToNum(gMakerName)
  8.   if (gMakerNum = 0) or ((gMakerNum = 1) and (gMakerName <> "Arafat")) then
  9.     alert("oops! problem with name")
  10.   else
  11.     go(the frame + 1)
  12.   end if
  13. end
  14.