About the use of if conditional statements in process items

How can I use Boolean signals from other components for if conditional statements?

In my case other component name “PRESS” and in Properties “Press_OK = False”

so I wrote "PRESS.Press_OK == False " on the if conditional statement and I got an error.


PRESS Component MODELING

image
Picker Component ProcessExecutor

image
Error

You need to use the Wait signal statement for signals.
https://help.visualcomponents.com/4.10/Premium/en/English/Process%20Modeling/Process%20Statements/Wait_Signal.htm

However, in your screenshot Press_OK is a component property, not a signal.
Those you can get using the Get property statement.
https://help.visualcomponents.com/4.10/Premium/en/English/Process%20Modeling/Process%20Statements/Get_Property.htm

Okay I try it. Thank you so much and have a nice day