Dear List
Using good old Hypercard I can send stuff from one mac to another
using some serial port control xfcns written in 1994.
When I replace the receiving stack with a runrev stack with the
following code I get nothing.
Would someone at runrev (you still owe me a phone call!) or anyone
give me a hand on this, either through the list or privately.
Many thanks
Howard
Leicester UK
set the serialcontrolstring to\
"data=8" &\
" baud="& the label of btn baudrate of cd 2 of this stack &\
" parity="&char 1 of the label of btn parity of cd 2 of this stack &\
" stop="&the label of btn stopbits of cd 2 of this stack
put the serialcontrolstring
open file "modem:"
read from file "modem:" until eof
put it into temp
put temp after field "inputfld"
close file "modem:"