home *** CD-ROM | disk | FTP | other *** search
- /* ARexx script for AmigaLoad 2.0 */
-
- if(Show(P, "AMIGALOAD") == 0) then /* Is AmigaLoad running? */
- do
- Say "You must start AmigaLoad before running this script!"
- exit
- end
-
- Options RESULTS
- Address 'AMIGALOAD'
-
- 'GetTitle' NEWCPULOAD; title = left(result, 8)
- 'GetValue' NEWCPULOAD; value = right(result, 3)
- Say title || ":" value || "%"
-
- 'GetTitle' READY; title = left(result, 8)
- 'GetValue' READY; value = right(result, 3)
- Say title || ":" value || "%"
-
- 'GetTitle' FASTMEM; title = left(result, 8)
- 'GetValue' FASTMEM; value = right(result, 3)
- Say title || ":" value || "%"
-
- 'GetTitle' CHIPMEM; title = left(result, 8)
- 'GetValue' CHIPMEM; value = right(result, 3)
- Say title || ":" value || "%"
-
-