Hello, I have a flow that forwards phone calls if away from bluetooth and works well but when I come back to phone there is a message popup box that has a bunch of "registration was successful message" text down it. Im guessing is from when I get a call it creates one and so on. Anyway, is there an option to not see this message when coming back to my phone?
Thnaks,
registration was successful message
Moderator: Martin
Re: registration was successful message
You might be able to detect the message with trigger UI Event and dismiss it with action Control UI by simulating back button press or a tap somewhere on the screen.
Re: registration was successful message
Are you asking for more help or what? Please, be more specific.
Re: registration was successful message
yes sorry... I was just showing the message im getting all the time. I created a new flow with a Triger/UI event but in the event event what is the "Event Opened","Package Name" and "Text"? Then I select a Action/Control UI but under script it shows click("Help") if I click the function button I see back() how should the script look?
Thanks!
Thanks!
Re: registration was successful message
-Event type is the type of the event (duh) you want to observe. In your case it's probably "window opened".
-Package name defines what app should cause the event. I think here should be either the phone app or Android system UI. In my phone they are "com.android.phone" and "com.android.systemui". They should be something similar in your phone, you can search for them by pressing the three dots (...) on the right.
-The last field, Text, narrows down what messages the trigger should observe. From the dropdown menu select "contains text" and then write in the text field "Call forwarding". This is case sensitive.
We're done here, no the action.
Action Control UI
In the script field write "click("OK")" without the first and last quote mark. Again, this is case sensitive.
-Package name defines what app should cause the event. I think here should be either the phone app or Android system UI. In my phone they are "com.android.phone" and "com.android.systemui". They should be something similar in your phone, you can search for them by pressing the three dots (...) on the right.
-The last field, Text, narrows down what messages the trigger should observe. From the dropdown menu select "contains text" and then write in the text field "Call forwarding". This is case sensitive.
We're done here, no the action.
Action Control UI
In the script field write "click("OK")" without the first and last quote mark. Again, this is case sensitive.
Re: registration was successful message
MURTUMA thank you that worked great and thank you for taking the time to explain.....