<div><div class="gmail_quote">On Tue, Jan 31, 2012 at 6:29 AM, Vytenis Sciucka <span dir="ltr"><<a href="mailto:vytenis.sciucka@gmail.com">vytenis.sciucka@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

I have one problematic moment. I operate SO1R. Sometimes, when CQ Run rate is low and I see fresh meat in the bandmap, I like to jump to that frequency, ensure callsign is correct, throw my callsign, exchange reports and come back to my previous CQ frequency. These QSOs are very short. 20-40 seconds and if I'm quick enough to come back I find my CQ frequency still free. What I found highly unconvenient is returning to CQ frequency and making CQ again. I need to press tricky key combination Alt+F4 to come back and then one more combination CTRL+TAB for CQ mode. Only then I can send CQ again. All this switching in the heat of contest is no good. Is there any other solution? Some other logging programs have it implemented with one key click. What is possible with WinTest? Any key remaping? LUA scirpts?<br>


Any practical information will be appreciated very much.<br></blockquote><div><br></div><div>Vytenis,</div><div><br></div><div>I assume you are prefer to use ESM mode, hence the need to keep switching back and forth from RUN to S&P mode to make the Enter key do what you want.</div>

<div><br></div><div>Unlike N1MM software, Win-Test provides no way to automatically switch to S&P mode when you move the VFO or click on a spot, though it sure would be nice to have.  There is also no way to implement this via a LUA script, since there is no way to trigger a LUA script call whenever the VFO moves or you click on a cluster spot.</div>

<div><div><div class="gmail_quote"><div><div class="gmail_quote"><div><br></div><div>However, do try assigning the attached LUA script to a key like Alt+Enter, using Tools | Scripts Manager.</div><div><br></div><div>Then the sequence would be:</div>

<div><ol><li>Press Enter to call CQ</li><li>Click on a spot to QSY and fill in the callsign</li><li>Press F4 to send your callsign</li><li>Enter the received exchange</li><li>Press F2 to send your exchange</li><li>Press Alt-Enter to run the LUA script which will:</li>

<ol><li>Log the QSO</li><li>Return to the run frequency</li><li>Call CQ</li></ol></ol><div>Or if you can't get used to pressing F4 and F2, the sequence would be:</div><div><ol><li>Press Enter to call CQ</li><li>Click on a spot to QSY and fill in the callsign</li>

<li>Press Ctrl+Tab to toggle to S&P mode</li><li>Press Enter to send your callsign</li><li>Enter the received exchange</li><li>Press Enter to send your exchange</li><li>Press Alt-Enter to run the LUA script which will:</li>

<ol><li>Log the QSO</li><li>Return to the run frequency</li><li>Restore RUN mode</li><li>Call CQ</li></ol></ol></div><div>73,</div></div><div>Bob, N6TV</div><div><br></div><div>LogQSOandRestoreRunFreq.wts:</div><div><div>

<font face="'courier new', monospace">-- Log a QSO and return to RUN frequency then call CQ</font></div><div><font face="'courier new', monospace">-- Time-stamp: "31 January 2012 19:16 UTC"</font></div>

<div><font face="'courier new', monospace">-- Assign to Ctrl-Enter or Alt-Enter</font></div><div><font face="'courier new', monospace">-- Written by N6TV</font></div><div><font face="'courier new', monospace"><br>

</font></div><div><font face="'courier new', monospace">-- Send Ctrl+Plus to silently log the QSO</font></div><div><font face="'courier new', monospace">wtApp:SendCtrlKey("Plus")</font></div><div>

<font face="'courier new', monospace"><br></font></div><div><font face="'courier new', monospace">-- Send Alt+F4 to return to run freq</font></div><div><font face="'courier new', monospace">wtApp:SendFKey("F4", WT_KEY_ALT)</font></div>

<div><font face="'courier new', monospace"><br></font></div><div><font face="'courier new', monospace">-- If we're in S&P mode ...</font></div><div><font face="'courier new', monospace">if wtQso:IsOperatingModeRun() == false then</font></div>

<div><font face="'courier new', monospace">   -- Send Ctrl+Tab to toggle back to RUN mode</font></div><div><font face="'courier new', monospace">   wtApp:SendKeyCode(265, WT_KEY_CTRL)</font></div><div><font face="'courier new', monospace">end</font></div>

<div><font face="'courier new', monospace">-- Pause for 300 ms to allow VFO swap to complete</font></div><div><font face="'courier new', monospace">wtApp:Sleep(300)</font></div><div><font face="'courier new', monospace"><br>

</font></div><div><font face="'courier new', monospace">-- Press F1 to call CQ</font></div><div><font face="'courier new', monospace">wtApp:SendFKey("F1", 0)</font></div><div><font face="'courier new', monospace">return -1</font></div>

</div><div><br></div></div></div></div></div></div></div></div>