Both the buttons and the text will become visible after being selected once.
I found this statement in another thread
Code: Select all
No, ListRequest() doesn't require reqtools.library. It's a custom implementation but no, it doesn't use ReAction either :)
For a minimum example, the one from the docs can be used:
Code: Select all
r = ListRequest("User prompt", "Which of these is not an island?",
{"Australia", "Fiji", "New Zealand", "Easter Island", "Hawaii",
"Goa", "Madagascar", "Maldives", "Seychelles"})
If r = -1
Print(" You chose the chicken exit!")
ElseIf r = 5
Print(" That's right, congratulations!")
Else
Print(" Sorry, but that is an island...")
EndIf
WaitLeftMouse