home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! 1996 May / macgaichiban199605.bin / MOVIES / PTM / 00072.ls < prev    next >
Encoding:
Text File  |  1996-03-05  |  291 b   |  15 lines

  1. on exitFrame
  2.   set pt to mouseCast() - 8
  3.   put pt
  4.   if (pt > 4) and (pt < 20) then
  5.     if rollOver(pt) then
  6.       set the visible of sprite 30 to 1
  7.       set castno to pt + 45
  8.       place(30, castno, 108, 140)
  9.     end if
  10.   else
  11.     set the visible of sprite 30 to 0
  12.   end if
  13.   go(#loop)
  14. end
  15.