[Contents] [Index] [Help] [Browse <] [Browse >]

                       
                 

MessageARexx

The arexx script MessageARexx.amicomsys is run when: - A text, chat or WEB -message arrives If the 'Replace ACS's requesters' is enabled in settings this script it will take over the message handling of AmiComSys. Thess command line arguments is sent to the script: USER\0NAME\0TEXT\0ACTION You could parse it in Arexx with PARSE ARG user '\0' name '\0' text '\0' act 'act' can be msg/chat/web An example script: /* MessageArexx.amicomsys example ** You parse the arguments which AmiComSys send to ** this script in the following way: user=username name=realname text=the message text act= MSG, CHAT or WEB. */ PARSE ARG user '\0' name '\0' text '\0' act Say "User:" user Say "Name:" name Say "Text:" text Say "Act:" act It's only for registered users.

Converted on 27 Apr 1999 with RexxDoesAmigaGuide2HTML 2.1c(private) by Michael Ranner.