Status bar variation

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

Moderator: Martin

Locked
thephiloospher
Posts: 29
Joined: 05 Jan 2014 10:28

Status bar variation

Post by thephiloospher » 05 Jan 2014 11:45

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

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

Re: Status bar variation

Post by Martin » 06 Jan 2014 18:36

Hi,

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

Regards,
Martin

thephiloospher
Posts: 29
Joined: 05 Jan 2014 10:28

Re: Status bar variation

Post by thephiloospher » 08 Jan 2014 10:42

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.

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

Re: Status bar variation

Post by Martin » 08 Jan 2014 18:17

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

thephiloospher
Posts: 29
Joined: 05 Jan 2014 10:28

Re: Status bar variation

Post by thephiloospher » 09 Jan 2014 13:47

Ok, thanks!

Locked