How to restore the color of a ListBox to its default?
In the following JSL, after changing the color of the ListBox frame, how can I revert it to the default color?
Also, if I want to change the background color of the ListBox, how should I set it up? The command for changing the background color modifies the color of the frame.
Names Default To Here( 1 );
New Window( "Example",
b = List Box( {"single", "double", "triple"}, nlines( 5 ) )
);
wait(2)...