I am trying to open up a border box to the right of my list box on a button press, how can this be achieved? I have attached my attempted code below.
New Window("test",
title = Text Box("test", set font style("Bold")),
V List Box(
lb = List Box( "Test", width(150),nlines( 18 ) ),
),
H List Box(
Button = Button Box("Test",
Spacer Box(Size(50, 25)),
Border Box(
Left(50), Right(50), Top(0), Bottom(50), Sides(50), Text Box("Test"),
),
),
),
);