home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hand Held Organizer Toolkit
/
walnutcreekcdrom-handheldorganizertoolkit-march1998.iso
/
PalmPilot
/
support_applications
/
autopilot.exe
/
demo-commands.su_
/
demo-commands.su
Wrap
Text File
|
1996-12-07
|
872b
|
51 lines
#
# Summary : Demonstration of some common commands.
# Version : 1.0
# Author : Russ Ethington
#
# "Print" shows a string in the output window.
Print "Here goes..."
# "Trace On" prints each command to the output window.
Trace On
# "Wait" will pause for the number of seconds you specify.
Wait 1
# "Run" starts up another program, such as WordPad.
Run "C:\program files\accessories\wordpad.exe"
# Give the program time to start up before typing into it.
Wait 3
# "Type" acts as if you typed on the keyboard.
Type "Hi there. How are you?"
# Let the user see it momentarily, the quit without saving.
Wait 3
# This means hold down the ALT key (%), while typing "f", then type "x".
Type "%(f)x"
# Type "n" when asked to save the document.
Type "n"
Wait 1
# "Trace Off" turns off the tracing.
Trace Off