home *** CD-ROM | disk | FTP | other *** search
- /* nodedial.term
-
- Here's a little script I wrote because I kept hearing folks say NComm was so
- good because it could dial out of the nodelist and term couldn't.
-
- This script puts the traplist.library into the ARexx libs list, get's a node
- number from the user, and then it has term dial the phone number associated
- with that address.
-
- Install it as a Fast-Macro or as a function key with the command;
-
- \anodedial.term
-
- Written by Mike Fitzgerald <mrfitz@lcafe.lakes.trenton.sc.us>
-
- */
-
- options results
- addlib("traplist.library",0,-30,0)
- yourNLpath = "NodeList:" /* set this for your system */
-
- REQUESTSTRING prompt 'What Address to dial?'
- address =result
-
-
- call FindNode(address,telephone,yournlpath)
- numbers = result
- parse var numbers trash number
- dial number
-