Page 1 of 1

Applescript Split Command Problem

Posted: Mon 16. Oct 2023, 13:14
by WB0KWJ
I am attempting to write a small AppleScript to add 1 or 2 kHz to the displayed frequency for DX split operation with my Kenwood TS-2000.

There are three apparent problems.

1. Setting txFrequency_B does nothing. Setting txFrequency sets VFO A to the value.
2. Using txFrequency turns off the split, even if it was turned using the buttons on the radio.
3. Using SetSplitOn turns on the split. But is also always sets VFO A=B.

Perhaps there is something I do not know or am doing incorrectly. I am using a Microham Microkeyer II interface. Here is the script:

Code: Select all

tell application "RUMlogNG"
      try
        SetSplitOn
        set myFrequency to frequency
        set txFrequency_B to myFrequency + 2 
      end try
end tell

Re: Applescript Split Command Problem

Posted: Mon 16. Oct 2023, 14:21
by DL2RUM
set txFrequency_B was not supported for the Kenwood yet. Try this: https://dl2rum.de/RUMlogNG/RUMlogNG_Test.zip

Re: Applescript Split Command Problem

Posted: Mon 16. Oct 2023, 14:26
by WB0KWJ
Thank you. That worked quite well.

Jim
WB0KWJ