AnyBox
AnyBox copied to clipboard
Order of prompt groups
Is there a way to change the order of prompt groups? It seems like by default they're sorted alphabetically, is there a way to specify how you'd like them ordered?
For example,
$Box.Prompts =
@(
New-AnyBoxPrompt -Group "Z" -InputType Text -Message "test"
New-AnyBoxPrompt -Group "A" -InputType Text -Message "test"
)
Group "A" will show above group "Z" even though it's written afterwards.
Not currently, but I'll look into adding the ability if time ever permits.
This will be possible in the upcoming AnyBox v1.0 via the use of the new -Order
parameter; e.g., New-Prompt -Order 1 ...