does not have the "User Dialog"

Denis

New member
Good afternoon. I have a version of the macrodroid pro. The program does not have the "User Dialog" functionality to create a window for entering data from the user
 

Denis

New member
In the macro, there is no way for the user to enter their data and there is no way to save this data to a variable. There is such an opportunity in the macrodroid sidebar.
 

Qarboz

Well-known member
In the macro, there is no way for the user to enter their data and there is no way to save this data to a variable. There is such an opportunity in the macrodroid sidebar.
You need to use a string type variable, not boolean type
 

Dm114

Well-known member
You need to use a string type variable, not boolean type
Sorry my friend but User prompt option exists for any kind of variable (even boolean ones).

In fact, I must admit I didn't really understood @Denis's problem unless he wants to have the opportunity to prompt user when using MD Drawer item. It's only possible inside a macro.
 

Qarboz

Well-known member
Sorry my friend but User prompt option exists for any kind of variable (even boolean ones).

In fact, I must admit I didn't really understood @Denis's problem unless he wants to have the opportunity to prompt user when using MD Drawer item. It's only possible inside a macro.
I know you can use any type of variable, but it seems to me that OP wants to "enter data" (I assume alphanumeric), but in the screenshots he posted he used a boolean and as a result the input field does not appear but only the "True-False" choice
 

Dm114

Well-known member
I know you can use any type of variable, but it seems to me that OP wants to "enter data" (I assume alphanumeric), but in the screenshots he posted he used a boolean and as a result the input field does not appear but only the "True-False" choice
I hadn't seen that this way...

So I guess it was an error when creating this variable: as Boolean type appears on the top of the list (as if it were the default type, which is not), it sometimes happen that we validate Variable creation just after entering its name without choosing a type...

Of course you are right: if the user wants to enter alphanumeric data, he must chose an alphanumeric type, which is String type.
 
Top