<div class="gmail_quote">On Mon, May 31, 2010 at 1:16 PM, Tõnno Vähk <span dir="ltr"><<a href="mailto:Tonno.Vahk@gafm.ee">Tonno.Vahk@gafm.ee</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

1. I used MicroKeyer II with WT and ORION for the first time in WinKey mode. Otherwise OK but sometimes the speed of the exchange message jumped way up making me repeat the number. It jumped for 1 message only. The message under F2 was "++++ENN---- $SERIAL". So ENN was sent as intended and then I guess Serial even faster. Is this a know issue with WinKey? Any ideas how to get rid of it?<br>

</blockquote><div><br>I used to see this issue when "By Both" was selected in the WKSETUP dialog (Options | Winkey Configuration ...).  Setting the Winkey speed by both the Winkey pot and by Win-Test commands is "not recommended," because keeping them 100% in sync. could never be guaranteed.  I haven't seen the speed up issue since I selected speed change "only by the Win-Test commands."<br>

<br>I'm also using the Winkey v22 chip, which had some fixes for speed changes in the middle of a letter, but I don't know if that matters.<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



2. For some time I have had the issue of CTRL+arrow not moving in active Bandmap but among all spots! I am sure others have had the same problem. Is something wrong there? The manual says that CTRL+SHIFT+arrow should move among all spots. I have not tried what it does.<br>

</blockquote><div><br>Which arrow key are you pressing?<br><br>Ctrl+Up Arrow and Ctrl+Down Arrow skip over duplicates in the active radio's band map.  Ctrl+Shift Up Arrow and Ctrl+Shift Down Arrow do not skip dupes?  It sounds like the Shift key is locked down (?).  Does your keyboard have a Shift Lock button or "All Caps" mode?<br>

<br>See also the Tools | Redefine Keyboard Keys (DEFINEKEYS) and Tools | Scripts Manager to be sure that Ctrl+Up/Down have not be redefined to do other functions or call LUA scripts.<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



3. Feature request: thank god we have $NEXTSERIAL but in several situations there is need to send more than 1 number in advance even. Can you guys add $NEXT2SERIAL and $NEXT3SERIAL or something like that??<br></blockquote>

<div><br>Unfortunately the LUA API provided by Win-Test is still too limited to let the users write this function.  What's needed is new APIs like:<br><br><div style="margin-left: 40px;">wtQSO:getSerial()<br></div>-or-<br>

<div style="margin-left: 40px;">wtApp:getVar("$SERIAL")<br></div><br>but neither function exists.<br><br>I tried invoking a script with an argument:<br><br><div style="margin-left: 40px;">#NEXT2SERIAL($SERIAL)<br>

</div><div style="margin-left: 40px;">#NEXT2SERIAL("$SERIAL")<br></div><br>but that didn't work either.   All I could come up with is a prompt.  Try this script, call it Next2Serial.wts:<br><br><div style="margin-left: 40px;">

currSerial = wtApp:InputInteger("What's the current serial number?",  "Next2Serial")<br>if currSerial ~= nil and currSerial ~= 0 then<br>   wtKeyer:Play("++$RST-- " .. currSerial + 2)<br>

end<br>return -1<br></div><br>Then add #NEXT2SERIAL to a CW message or Alt-C message, or program a key combination that calls the script (via Tools | Scripts Manager).<br><br>Speaking of LUA, I'd like two new APIs:<br>

<br><div style="margin-left: 40px;">wtApp:SetRunMode()<br>wtApp:SetSandPMode()<br></div><br>So that I can automate switching modes when using traditional NOESM mode.  Alternatively, if there were new text commands like MODERUN or MODESP I could do<br>

<br><div style="margin-left: 40px;">wtApp:TextCommand("MODERUN")<br>wtApp:TextCommand("MODESP")<br></div><br>I tried sending Ctrl-Tab via:<br><br><div style="margin-left: 40px;">wtApp:SendKeyCode(9,4)<br>

</div><br>but that didn't work either.  :-(<br><br>73,<br>Bob, N6TV<br></div></div>