ListRequest issue on Aros 68k
Posted: Thu Jan 23, 2025 11:18 am
If using ListRequest in a program running on AmiBench (the Aros 68k environment on the A600GS) the items in the list are hidden, as well as the buttons.
Both the buttons and the text will become visible after being selected once.
I found this statement in another thread
Being a custom implementation, are there any clues that can be passed along to the A600GS developers to adress this?
For a minimum example, the one from the docs can be used:
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