Connection

Post your feature requets for new triggers, conditions, actions and other improvements.

Moderator: Martin

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: Connection

Post by Martin » 16 Jun 2014 15:46

@Akt: Maybe I don't fully understand your request yet. Could you please give an example that descibes how you would like the flows to work together?
Like BoBo already wrote, you could probably use a condition to achieve this. Something like this should work:

Flow 1
-trigger ...
-action ...
-condition Expression: global_flow_part_enabled
-->true: -some actions
-->false: -some other actions

...and then use another flow to switch between the two different cases of the first flow:
Flow 2
-trigger ...
-action Script: global_flow_part_enabled=true;

respectively following action to make the first flow execute the other actions:
-action Script: global_flow_part_enabled=false;

Does this achieve what you are looking for?

Regards,
Martin

Akt
Posts: 133
Joined: 25 May 2014 08:57

Re: Connection

Post by Akt » 17 Jun 2014 03:35

Thanx martin
I got the solution of my problem......

Locked