Author Topic: Compare inline txt variable with VA txt  (Read 1353 times)

gorgo

  • Guest
Compare inline txt variable with VA txt
« on: June 21, 2019, 08:09:16 PM »
hi.
What is wrong here? Thanks

Code: [Select]
Begin
Text Compare : [HexValue] Contains '1F1117'
    Write [Gray] 'Hex Value = {TXT:~~HexValue}' to log
End Condition

Gary

  • Administrator
  • Hero Member
  • *****
  • Posts: 2824
Re: Compare inline txt variable with VA txt
« Reply #1 on: June 21, 2019, 11:47:57 PM »
Code: [Select]
Begin
Text Compare : [~~HexValue] Contains '1F1117'
    Write [Gray] 'Hex Value = {TXT:~~HexValue}' to log
End Condition


Missing the, '~~' in the comparison.

gorgo

  • Guest
Re: Compare inline txt variable with VA txt
« Reply #2 on: June 22, 2019, 03:45:58 AM »
Code: [Select]
Begin
Text Compare : [~~HexValue] Contains '1F1117'
    Write [Gray] 'Hex Value = {TXT:~~HexValue}' to log
End Condition


Missing the, '~~' in the comparison.

Thank You.