grandMA2
Version 3.9

Create pop-ups in macros

Sometimes it can be very useful to create macros that can collect user input while running.

A macro can create a pop-up that prompts the user for input. The macro will halt and wait for the user to type the input before continuing.

Pop-ups are created by the use of parentheses.

The text inside the parentheses is used as text prompted to the user, while the response entered by the user will replace the parentheses and the prompting text.

Important:
When you are using pop-ups to assign text to variables, you should use quotes inside the parentheses: ("What address?") but when using pop-ups for commands and numbers, do not use quotes inside the parentheses: (Which Fixture ID?).

 

Example 1:

We want a macro that selects the fixture patched to a specific DMX address. The macro should ask the user for a universe number and the DMX address. This is done using two prompts - one for each user input.

Since we are asking for numbers, the text entered in the parentheses cannot be in quotes - the console would interpret it as text instead of numbers.

The macro looks like this:

Edit macro pop-up with macro line

When running the macro, the console first prompts for the universe number:

First prompt of the macro - asking for universe number

After the user types the number and finishes with Please/Enter, then it asks for the DMX address:

Second prompt of the macro - asking for DMX address

Processed, the macro executes the command. It could look like this:

Command line feedback of the macro

Example 2:

We want a macro that we can use to login as a different user. We want to be prompted for the user name and password. In this macro, we choose to store the user input in variables. All users need a password for this macro to work.

This is the macro:

No. CMD
1 SetVar $my_user=("What User do you want to login?")
2 SetVar $my_password=("What is the password?")
3 Login $my_user $my_password
4 SetVar $my_password=

Notice that we store the user input as text.

The fourth macro line removes the my_password variable. Otherwise, the password would have been readable by anyone.

It can often be a good idea to treat the user input as text. This, for instance, allows the use of names instead of just numbers.

 

See more examples in the Example macros topic.