home *** CD-ROM | disk | FTP | other *** search
- /* $VER: Anwahl_mit_VoiceLog.adm 1.5 (4.7.95)
-
- Log telephone calls.
-
- An ARexx-Script for use with ADM (AddressMaster, (c) Jan
- Geissler) and Voice-Log (c) by Clemens Resanka in 1994
-
- 1.0 Jul-94 [ClR] Initial release.
-
- 1.1 09-Aug-94 [jan] Version String added.
- Removed addressing of ADM for use as
- ADM-Menu-Macro.
- Stored search path of voice log tool
- and of log file in var for easier
- adaption.
- Appending of string to log file
- "optimized".
- Started dial tool before dialing number.
-
- 1.2 25-Aug-94 [ClR] Optimized LogTel for use with Voice-Log 1.04
-
- 1.3 18-Feb-95 [ClR] VoiceLog is closed, when number is not dialed
- (e.g. because the modem is not on).
- Optimized output-algorithm: now "ECHO >>.." is used
- and output is now done in one line (no more useless
- variables).
-
- 1.4 19-Feb-95 [ClR] Now this script needs VoiceLog V1.07! This version of
- Voice-Log does the logging instead of the script.
- Therfore using LogTel does no longer block ADM.
-
- 1.5 02-Jul-95 [ClR] Now the script avoids sending Voice-Log a ""
- as a phone-number. Voice-Log 2.2 crashed then :-(
- Now the ADM variable .FULLNAME is used!
-
- */
-
-
- OPTIONS RESULTS
-
- ToolPath = "LogTel/Voice-Log"
- quote = '"'
-
- GETADDRESS Stemmy
-
- Nam = Stemmy.FULLNAME
- Tel = Stemmy.Telephone
- If Tel ~= "" then Tel = quote||Tel||quote
- IF Stemmy.SORT = 'COMPANY' THEN Nam = Stemmy.company
-
- ADDRESS command 'run >NIL:' ToolPath quote||Nam||quote Tel
-