home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / comm / qamitrack / arexx / testtrackrexx.rexx < prev   
Encoding:
OS/2 REXX Batch file  |  1998-02-19  |  1.7 KB  |  46 lines

  1. /* Test out QAmiTrack's GET command */
  2.  
  3. address "QAmiTrack"
  4. options results
  5.  
  6. GET stem info. clients actions
  7.  
  8. say "AmiTrack's current state"
  9. say "------------------------"
  10. say "HIDDEN             =" info.hidden
  11. say "COMMENT            =" info.comment
  12. say "LASTENTRYCLICKED   =" info.lastentryclicked
  13. say "SERVER             =" info.server
  14. say "PORT               =" info.port
  15. say "CONFIRM            =" info.confirm
  16. say "CONNECTED          =" info.connected
  17. say "ENABLED            =" info.enabled
  18. say "BEEPONLOG          =" info.beeponlog
  19. say "LOGFILE            =" info.logfile
  20. say "LOGLEVEL           =" info.loglevel
  21. say "NUMCLIENTS         =" info.numclients
  22. say "VISIBLETO          =" info.visibleto
  23. say "VIEWBY             =" info.viewby
  24. say "USERNAME           =" info.username
  25. say "REALNAME           =" info.realname
  26. say "LOGVIEWLEVEL       =" info.logviewlevel
  27. say "LOGVIEWLENGTH      =" info.logviewlength
  28. say "LOGONSCRIPT        =" info.logonscript
  29. say "LOGOFFSCRIPT       =" info.logoffscript
  30. say "UPDATESCRIPT       =" info.updatescript
  31. say "CONNECTSCRIPT      =" info.connectscript
  32. say "DISCONNECTSCRIPT   =" info.disconnectscript
  33. say "ENDSCRIPT          =" info.endscript
  34. say "STARTSCRIPT        =" info.startscript
  35. say "DEFAULTSCRIPT      =" info.defaultscript
  36.  
  37. do i=0 by 1 for info.numclients
  38.   say " - Client "i"        = ["||info.clients.i||"] username: ["||info.usernames.i||"] realname: ["||info.realnames.i||"] comment: ["||info.comments.i||"] lastChanged: "||info.lastchanged.i||" winopen: "||info.winopen.i
  39. end
  40. say "CURRENTACTION      =" info.currentaction
  41. say "NUMACTIONS         =" info.numactions
  42. do i=0 by 1 for info.numactions
  43.   say " - Action "i"        = ["||info.actions.i||"] command: ["||info.commands.i||"]"
  44. end
  45.  
  46.