home *** CD-ROM | disk | FTP | other *** search
- /* Tutorial program for Injector, can be started by injector (hotkey
- lcommand rcommand numpad enter in the configuration
- presets/Example.injector) */
-
- ADDRESS "Injector"
- SAY"First of all, for the program to continue, you must delete what it"
- SAY"injects in this window (the down arrow key will do it)"
- SAY
- SAY"Let's see the File Requester features:"
- FREQ_SHOW
- SAY"You selected:"
- FREQ_INJPATH
- SAY
-
- SAY"What about the string requester ?"
- SREQ_SHOW
- SAY"You entered:"
- SREQ_INJECT
- SAY
-
- SAY"Injector can also inject constant strings. Whithin an ARexx program,"
- SAY"It can be useful to add a newline (\n), this way things injected by"
- SAY"Injector are queued on the console's stack. Example:"
- CHARS_INJ"(This is a test !\a\n)"
- SAY
-
- SAY"The time features:"
- TIME_INJDATE"(0)"
- CHARS_INJ"(, it is )"
- TIME_INJTIME"(0)"
- SAY
-
- SAY"Injector can paste the clipboard contents, let's see if there's"
- SAY"something in it..."
- CHARS_CLIP"(0)"
- SAY
-
- SAY"Is the Kickstart environment variable defined ?"
- CHARS_ENV"(Kickstart)"
- SAY
-
- SAY"That's it, I let you with the prefs program so that you can see"
- SAY"clearly. Bye."
- EXEC_PREFS
-