Hi,
I try to create an advanced flow that results in a push message. Since I don’t want any messages being sent to me during the night I want to delay the push until a specified time if the flow runs at night time.
I would be grateful for help.
Hi,
I try to create an advanced flow that results in a push message. Since I don’t want any messages being sent to me during the night I want to delay the push until a specified time if the flow runs at night time.
I would be grateful for help.
Some thoughts:
Note that you need to ensure that the message variable is not changes by other flows when it is input for a pending notification to be send.
or in stead of chrono, you can use timey:
and use a flexible or preset time
Isn’t there anyway to set a exact time for an event to happened?
WHEN time is 08:00
AND var_message is TRUE
THEN sendmessage var_message_text
set var_message to FALSE
Tanks, I’m sure that’s a way to do it but I’m not familiar with scripts so I don’t understand it completely.
Is there a way to do it in advanced flow?
When you don’t want to receive push messages @ night, they’re not critical I suppose.
For those messages I use the Simple Log app.
Just a suggestion.
It is not a script but just a description of logic which can be easy realized in a standard flow in a similar way using WHEN, AND and THEN cards.
var_message is a Boolean variable which is set to true when a message shall be send, var_messagetext is a text variable which contains the text to be send.
Both variables shall be set in a flow when something (you did not describe) happens.
Just look up the corresponding cards in advanced flows. Standard flows and advanced flows are just a different presentation of the same logic flow.