Hi Vahagn,
You can try the following approaches:
//...
obj.Keys("[NumPlus]");
//or:
obj.Keys("!=");
//or:
obj.Keys("[X107]");
//...
For additional information, please see the
"Keys Action" help topic.
If the recommendations above do not help, please clarify the problem. What object (obj) are you referring to? What code is generated by TC when you record your actions? If you get some error messages during the playback, please send us screenshots demonstrating the errors.
Also, to troubleshoot the issue, run Notepad and execute the code below:
function TestNotepad()
{
var Edit;
Edit = Sys.Process("notepad").Window("Notepad", "*").Window("Edit");
Edit.Keys("+");
Edit.Keys("[NumPlus]");
Edit.Keys("!=");
Edit.Keys("[X107]");
}
Does this script work properly?
Let me know your results.