home *** CD-ROM | disk | FTP | other *** search
/ The Dynamic Human Version 2.0 / DH2_CD2.ISO / pc / files / help.dxr / 00006.ls < prev    next >
Encoding:
Text File  |  1997-11-17  |  456 b   |  35 lines

  1. on returnAction
  2.   global gReturnMovie
  3.   gomovie(gReturnMovie)
  4. end
  5.  
  6. on helpBackAction
  7.   go(the frame - 5)
  8. end
  9.  
  10. on helpForwardAction
  11.   if the frame < 5 then
  12.     go(5)
  13.   else
  14.     go(the frame + 5)
  15.   end if
  16. end
  17.  
  18. on overviewAction
  19.   if (the frame < 5) or (the frame > 10) then
  20.     go(5)
  21.   end if
  22. end
  23.  
  24. on navigationAction
  25.   if (the frame < 15) or (the frame > 35) then
  26.     go(15)
  27.   end if
  28. end
  29.  
  30. on utilitiesAction
  31.   if the frame < 40 then
  32.     go(40)
  33.   end if
  34. end
  35.