I set the spacing for the Lineup Box and added a margin to the right side of the wide Spacer Box in the Unlineup Box with an H List Box.
pb = Expr(
Panel Box( "", Spacer Box( Size( 20, 20 ) ), <<Background Color( "dark blue" ) )
);
sb = Expr(
Panel Box( "", Spacer Box( Size( 20, 20 ) ) )
);
New Window( "test design",
Lineup Box( N Col( 4 ), Spacing( 5 ),
pb, pb, pb, pb,
pb, pb, pb, pb,
Unlineup Box( H List Box( Panel Box( "", Spacer Box( Size( , 20 ) ), <<Background Color( "dark blue" ), <<Margin( Right( 5 ) ) ), pb ) ),
pb, pb, pb, pb
)
);
