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
Text File  |  1996-12-07  |  872b  |  51 lines

  1. #
  2. # Summary : Demonstration of some common commands.
  3. # Version : 1.0
  4. # Author  : Russ Ethington
  5. #
  6.  
  7. # "Print" shows a string in the output window.
  8. Print "Here goes..."
  9.  
  10. # "Trace On" prints each command to the output window.
  11. Trace On
  12.  
  13. # "Wait" will pause for the number of seconds you specify.
  14. Wait 1
  15.  
  16. # "Run" starts up another program, such as WordPad.
  17. Run "C:\program files\accessories\wordpad.exe"
  18.  
  19. # Give the program time to start up before typing into it.
  20. Wait 3
  21.  
  22. # "Type" acts as if you typed on the keyboard.
  23. Type "Hi there. How are you?"
  24.  
  25. # Let the user see it momentarily, the quit without saving.
  26. Wait 3
  27.  
  28. # This means hold down the ALT key (%), while typing "f", then type "x".
  29. Type "%(f)x"
  30.  
  31. # Type "n" when asked to save the document.
  32. Type "n"
  33.  
  34. Wait 1
  35.  
  36. # "Trace Off" turns off the tracing.
  37. Trace Off
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.