Dialing a Phone Number With the modem: Port |
|
on dial dNumber open file "modem:" for write write "ATDT" && dNumber to file "modem:" close file "modem:" end dial dNumber
Regards, Sjoerd
Posted 2/28/2002 by Sjoerd Op 't Land to the MetaCard List
(See the complete post/thread)
dNumber
.
As I don't want to close the modem immediately after dialing, I put the last handler in a button:on dial dNumber -- function by Sjoerd Op 't Land open file modem: for write write "ATDT" && dNumber && return to file modem: end dial dNumber
on mouseUp close file modem: end mouseUp
Modified 4/8/2002 by Alejandro Tejada to the MetaCard List
(See the complete post/thread)