home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Online / AMIPopUp / AREXX / test1.rexx < prev   
OS/2 REXX Batch file  |  1999-07-18  |  515b  |  27 lines

  1. /* Arexx Testprogram for AmiPopUp V1.40 */
  2.  
  3. address 'AMIPOPUP'            /* The Port of AmiPopUp */
  4. options results                    /* We want results stored in RC ?! */
  5.  
  6. /* Try to load next message */
  7.  
  8. next
  9. if RC = 0 then say 'next message shown'
  10. else say 'ERROR, No next message available.'
  11.  
  12. /* Try to load previous message */
  13.  
  14. prev
  15. if RC = 0 then say 'prev message shown'
  16. else say 'Error, No prev message available.'
  17.  
  18. totalmessages
  19.  
  20. totals = RC
  21.  
  22. Say "There are "totals" messages available."
  23.  
  24. Say "Open About Window..."
  25.  
  26. toggleabout
  27.