home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / diags / pandor23.zip / SLOW.PAN < prev    next >
Text File  |  1991-09-07  |  597b  |  21 lines

  1. * This script runs a program in a jerky slow motion
  2. *
  3. * Please edit the first two commands that follow to insert the name of a
  4. * suitable program and command-line parameters for it.  The most suitable
  5. * type of program is one that produces continuous graphical output.
  6.  
  7. IfLoad "program.exe"
  8.     Go ""
  9. Else
  10.     Output "^M^JThis script demonstrates how Pandora can run a program in slow motion.^M^J"
  11.     Output "Please start by editing the script and inserting a suitable program name.^M^J"
  12.     Quit
  13. EndIf
  14. OnDeath morgue
  15. Label SlowDown
  16. WaitPeriod 1t
  17. Pause 3t
  18. Jump SlowDown
  19. Label morgue
  20. Quit
  21.