Hi,
very good Automagic!!
There is a method to determine if there is a variation on the status bar?
I would create a task that repeat sounds when appears a icon of a new message whatsapp...
Thanks
Status bar variation
Moderator: Martin
Re: Status bar variation
Hi,
You can use a trigger Notification on Statusbar Displayed to execute a flow when you receive a whatsapp message.
Regards,
Martin
You can use a trigger Notification on Statusbar Displayed to execute a flow when you receive a whatsapp message.
Regards,
Martin
-
- Posts: 29
- Joined: 05 Jan 2014 10:28
Re: Status bar variation
Thanks,
but my question is different,
automagic how can determine if a I received message in Whatsapp?
example:
if in status bar is present whatsapp icon{
sound}
(it's possible?)
---
I have another question: is possibile enable/disable a single step in the flows?
---
Thanks for your patience.
but my question is different,
automagic how can determine if a I received message in Whatsapp?
example:
if in status bar is present whatsapp icon{
sound}
(it's possible?)
---
I have another question: is possibile enable/disable a single step in the flows?
---
Thanks for your patience.
Re: Status bar variation
You can use the following trigger to execute a flow whenever whatsapp posts a notification:
Notification on Statusbar Displayed: com.whatsapp
A complete flow could look like this:
-trigger Notification on Statusbar Displayed: com.whatsapp
-action Sound: Notification XYZ
You can not disable an action. You can either temporarily remove the connection to the action when you don't need the action or you can use a condition to execute an action only under certain conditions.
For example:
-trigger Notification on Statusbar Displayed: com.whatsapp
-condition Ringer Mode: Silent
-->false: -action Sound: Notification XYZ
This will play the sound when the ringer mode is Normal or Vibrate but not when the the ringer mode is Silent.
Regards,
Martin
Notification on Statusbar Displayed: com.whatsapp
A complete flow could look like this:
-trigger Notification on Statusbar Displayed: com.whatsapp
-action Sound: Notification XYZ
You can not disable an action. You can either temporarily remove the connection to the action when you don't need the action or you can use a condition to execute an action only under certain conditions.
For example:
-trigger Notification on Statusbar Displayed: com.whatsapp
-condition Ringer Mode: Silent
-->false: -action Sound: Notification XYZ
This will play the sound when the ringer mode is Normal or Vibrate but not when the the ringer mode is Silent.
Regards,
Martin