Is there a list of applescript commands that Rumlog will accept? I am trying to get around uploading my fldigi log and looking at trying to directly interface with fldigi. I have the list of xml-rpc commands for fldigi ... all I can do is try
I know there is an import function and a log scanning function. For me the log scan takes too long, over 10,000 QSOs in my log. The import function works but it is a little cumbersome having to close telnet windows first. I was going to attempt using the info at http://www.w1hkj.com/FldigiHelp-3.21/xm ... ntrol.html to interact with Rumlog live. This is one of the teach myself as I go attempts. I did not realize applescript would do what you posted, I'll see what I can figure out. If I can get something working ?I will post it here as I know a few of us are fldigi users.
tell application "http://127.0.0.1:7362"
set qsoCallsign to call xmlrpc {method name:"log.get_call"}
set qsomode to call xmlrpc {method name:"modem.get_name"}
set qsoReceivedRST to call xmlrpc {method name:"log.get_rst_in"}
set qsoSentRST to call xmlrpc {method name:"log.get_rst_out"}
end tell
tell application "RUMlog"
Callsign qsoCallsign
Mode qsomode
RxRprt qsoReceivedRST
TxRprt qsoSentRST
delay 2
Save
end tell
I placed this in the fldigi scripts directory $HOME/.fldigi/scripts/fldigi.scpt
Then I call it with the macro