home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 July / macformat-039.iso / DATABASE / BODY.DIR / 00018.ls < prev    next >
Encoding:
Text File  |  1996-03-14  |  354 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 <> "ali")) then
  9.     alert("oops! problem with name")
  10.   else
  11.     go(the frame + 1)
  12.   end if
  13. end
  14.