home *** CD-ROM | disk | FTP | other *** search
/ The Princeton Review - Science Smart / SCIENCE.iso / pc / science / files / cad.dir / 01737.ls < prev    next >
Encoding:
Text File  |  1996-01-26  |  613 b   |  30 lines

  1. on enterFrame
  2.   global gframe
  3.   if the frame <> gframe then
  4.     set gframe to the frame
  5.     unLoadCast()
  6.     slidesect()
  7.     slidesub()
  8.     updateStage()
  9.     puppetSprite(11, 1)
  10.     puppetSprite(12, 1)
  11.   end if
  12.   if rollOver(13) then
  13.     put "Click on a line to select a topic." into field 4305
  14.   else
  15.     if rollOver(15) then
  16.       put "Click on a line to select a subtopic." into field 4305
  17.     else
  18.       if rollOver(14) then
  19.         put "Click on a line to go review a topic." into field 4305
  20.       else
  21.         put EMPTY into field 4305
  22.       end if
  23.     end if
  24.   end if
  25. end
  26.  
  27. on exitFrame
  28.   go(the frame)
  29. end
  30.