I'm looking for a simple script to press the back button if a variable is returned as "null" or is not a number.
This is a "screen scraping script" which gathers variables from copy/paste
so if f=null
then press backspace
else
then carry on
something like that. thanks for your help
if null variable
Moderators: Dorian (MJT support), JRL
The two remarked let> lines were for testing
Code: Select all
VBSTART
VBEND
//Let>f=5
//Let>f=
If>f<>
VBEval>IsNumeric("%f%"),result
If>result=False
Press BackSpace
EndIf
Else
Press BackSpace
EndIf