I'm having an issue trying to run the results of the ORCArea through an IF statement. I have tried every combination that I can think of.
The Image that I'm scanning can have four words appear Freezing, Cold, Warm, and Boiling.
Code: Select all
Let>freezing=Freezing
Let>cold=Cold
Let>warm=Warm
Let>boiling=Boiling
OCRArea>373,108,475,128,strText
Let>temp={%strText%}
MessageModule>%temp%, %strText%, %freezing%
IF>{%temp%=%freezing%}
//somecode
Else
//somecode
Endif
What am I missing?