home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 February / netCD41.iso / pc / PC16.DIR / 00210.ls < prev    next >
Encoding:
Text File  |  1997-12-08  |  578 b   |  30 lines

  1. on exitFrame
  2.   global section
  3.   if section = "menu" then
  4.     go("menu")
  5.     set section to EMPTY
  6.   else
  7.     if section = "next" then
  8.       go(marker(1))
  9.       set section to EMPTY
  10.     else
  11.       if section = "back" then
  12.         go("menu")
  13.         set section to EMPTY
  14.       else
  15.         if section = "sect9" then
  16.           go("sect9")
  17.           set section to EMPTY
  18.         else
  19.           if section = "quit" then
  20.             go("quit")
  21.             set section to EMPTY
  22.           else
  23.             go("SECT4")
  24.           end if
  25.         end if
  26.       end if
  27.     end if
  28.   end if
  29. end
  30.