home *** CD-ROM | disk | FTP | other *** search
- * This script runs a program in a jerky slow motion
- *
- * Please edit the first two commands that follow to insert the name of a
- * suitable program and command-line parameters for it. The most suitable
- * type of program is one that produces continuous graphical output.
-
- IfLoad "program.exe"
- Go ""
- Else
- Output "^M^JThis script demonstrates how Pandora can run a program in slow motion.^M^J"
- Output "Please start by editing the script and inserting a suitable program name.^M^J"
- Quit
- EndIf
- OnDeath morgue
- Label SlowDown
- WaitPeriod 1t
- Pause 3t
- Jump SlowDown
- Label morgue
- Quit
-