Newbie needs help
Posted: Fri Oct 21, 2022 12:09 am
I have a variable "currentData".
In a handler I have a problem:
The conditional does not fire. The last line below it does. I am depressed.
Craig
In a handler I have a problem:
Code: Select all
put item 1 of currentData into temp
put temp contains "EMG" into xxx
if item 1 of currrentData contains "EMG" then
beep 2 -- does not fire
end if
if xxx = "true" then beep 2 -- but this does
Craig