[SOLVED] Device Properties oddity - SOLUTION: Use EQ instead of ==

I am trying to trigger on a device property. Specifically, my Visionic alarm.
If I capture the disarm or stay, these work fine. But armed away will not work for me.
He is the line from the status file

pAlarmState	Alarm	DetailedArmMode	Armed	2014-06-24 08:13:31.584	2014-06-24 08:13:01.603

but in the status window at the top of ui5 it says:

General Logics Pleg[197] : pAlarmState == Armed: Invalid Value token: ARMED

Have I missed something obvious here?

you should use eq instead of == for strings.

pAlarmState eq “Armed”

[quote=“bubaleta, post:2, topic:181715”]you should use eq instead of == for strings.

pAlarmState eq “Armed”[/quote]

Thank you… that fixed it