Page 1 of 1

Status bar variation

Posted: 05 Jan 2014 11:45
by thephiloospher
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

Re: Status bar variation

Posted: 06 Jan 2014 18:36
by Martin
Hi,

You can use a trigger Notification on Statusbar Displayed to execute a flow when you receive a whatsapp message.

Regards,
Martin

Re: Status bar variation

Posted: 08 Jan 2014 10:42
by thephiloospher
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.

Re: Status bar variation

Posted: 08 Jan 2014 18:17
by Martin
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

Re: Status bar variation

Posted: 09 Jan 2014 13:47
by thephiloospher
Ok, thanks!