In a 2-way Data condition, I can receive the following 2 responses:
error
error, not authorized
I suspect if I receive the second one, the first one will also be satisfied and their respective actions invoked; or, going down sequentially through the conditions, will the matching stop at the first satisfied match?
2-way behavior with Data
Re: 2-way behavior with Data
Both will be satisfied, and both sets of actions will occur. Feedback conditions are tested for in the order they are entered in the software, but the software does not stop checking if it finds a match - it runs through all conditions.
-
- Posts: 6
- Joined: Tue Jun 10, 2014 8:57 am
Re: 2-way behavior with Data
Hi,
Is there anyway of converting a data i.e Partly cloudy from a 2 way feedback to convert to a number which triggers a flag or go directly from feedback to flag?
I can send the data to a label ok.
Thanks
Raj
Is there anyway of converting a data i.e Partly cloudy from a 2 way feedback to convert to a number which triggers a flag or go directly from feedback to flag?
I can send the data to a label ok.
Thanks
Raj
Re: 2-way behavior with Data
I suspect I may not have clearly understood the question or else...Why not have a 2-way feedback action that sets a flag or number?
-
- Posts: 6
- Joined: Tue Jun 10, 2014 8:57 am
Re: 2-way behavior with Data
Hi Thanks for replying back to me.
Basically I have 2 way feedback that sends back the weather condition. i.e Partly Cloudy. So if the feedback is Partly Cloudy then I want the system to bring up an image of a Partly cloudy and if its rain image of rain and so on.
So I can see the partly cloudy show up on the label but I want some way to use a flag which allows an image to represent the weather.
I hope that made sense
Do you know of way to use text to send a flag?
Thanks
Raj
Basically I have 2 way feedback that sends back the weather condition. i.e Partly Cloudy. So if the feedback is Partly Cloudy then I want the system to bring up an image of a Partly cloudy and if its rain image of rain and so on.
So I can see the partly cloudy show up on the label but I want some way to use a flag which allows an image to represent the weather.
I hope that made sense
Do you know of way to use text to send a flag?
Thanks
Raj
Re: 2-way behavior with Data
You need to specify the text coming back, so rather than doing:
weather=(.*) for example, which might pull out 'Party Cloudy' to a label with a pattern match, you'd have a specific data feedback condition:
weather=Party Cloudy - and then double click to add an action which would be to set the partlycloudy flag to exclusively on, and use that flag to show the image.
weather=(.*) for example, which might pull out 'Party Cloudy' to a label with a pattern match, you'd have a specific data feedback condition:
weather=Party Cloudy - and then double click to add an action which would be to set the partlycloudy flag to exclusively on, and use that flag to show the image.