Hi guys,
I would like to create a notification equal to the original one: I attach the flow created (very simple) .. I have a problem, however, that by inserting the variable "notification text", the title is also repeated. How can I solve it?
Would it also be possible to replicate on automagic notification the name of the app and its icon?
Problem with copy any notification
Moderator: Martin
Problem with copy any notification
- Attachments
-
- Screenshot_20200222-204225.jpg (74.24 KiB) Viewed 9458 times
-
- flow_Screen_on_notify_SofaScore_20200222_204253.xml
- (3.16 KiB) Downloaded 716 times
Re: Problem with copy any notification
Use action script before using notification on Statusbar action
There is no way to change Name. For icon try option "use a large icon".
Code: Select all
if (startsWith(notification_text, content_title)) notification_text = substring(notification_text, length(content_title));
if (startsWith(notification_text, " ")) notification_text = substring(notification_text, 1);
Re: Problem with copy any notification
first of all thanks for the reply , I have tried as shown and it works correctly.
Thanks again!
Thanks again!