;"Source" for ZCPR3 alias CALLING.COM, uses DIALER to call a ;number represented by a shell variable created by SHVAR.COM. ; (e.g. SHVAR BRUCE 215-443-9031;CALLING BRUCE) ;Use of SW and SAK is specific to the ON! computer and should be ;deleted or commented out for other use with other systems. ;The alias can be "compiled" from this file with the TXTALIAS ;utility. Bruce Morgen, July 23, 1991 sw pa on ; Modem on (ON! utility SW.COM) cls ; Clear CON:'s CRT resolve echo calling $1 (1-%$1)$$|dialer 1%$1& ; Dial number with retry option sak /p5 ; Make sure modem stays on long enough sw pa ; Modem off (SW's toggle mode) ;END