UI: selection list?

sousben

New member
hi
I am trying to automate a delivery app that I use quite often and requires me to manually type in the details of the sender and recipient everytime

I would like to show some sort of menu that lets me select sender and recipient by names from a list - and then macrodroid would fill in the form.

What is the best way to show some selection options (10 to 15) to the user?
I thought of usimg multi choice popup but it has 3 options maximum
I thought about using the drawer but it looks like it s more intended for global use and starting macros than specific macro behaviour

Are there any other options I am missing that could be relevant?
 

Endercraft

Moderator (& bug finder :D)
hi
I am trying to automate a delivery app that I use quite often and requires me to manually type in the details of the sender and recipient everytime

I would like to show some sort of menu that lets me select sender and recipient by names from a list - and then macrodroid would fill in the form.

What is the best way to show some selection options (10 to 15) to the user?
I thought of usimg multi choice popup but it has 3 options maximum
I thought about using the drawer but it looks like it s more intended for global use and starting macros than specific macro behaviour

Are there any other options I am missing that could be relevant?
What about you use Set Variable, use an integer variable, use User input and assign each sender and recipient to a number ?
Then in your macro you can choose what to paste by storing the corresponding senders/recipent in an array (and using [lv=(the array)[[lv=(the integer variable)]]], or {lv=(the array)[{lv=(the integer variable)}]} ).
 
Top