Not sure how good idea this is, but maybe you can play around with negative margins (if all images are same size)
Names Default To Here(1);
img = Open("$SAMPLE_IMAGES/windmap.png", "png");
nw = New Window("",
Lineup Box(N Col(3),
img,img,img,
img,img,img,
img,img,img
)
);
wait(2);
pbs = nw << XPath("//PictBox");
pbs << Margin(Left(-2), Top(-2));
Also for me it seems like there are no borders between images. Are all the images you have same size?
Names Default To Here(1);
img = Open("$SAMPLE_IMAGES/windmap.png", "png");
nw = New Window("no borders",
V List Box(
h list box(img,img,img),
h list box(img,img,img),
h list box(img,img,img)
)
);
V List Box + H List Box (no borders):
![jthi_0-1669224603892.png jthi_0-1669224603892.png](https://community.jmp.com/t5/image/serverpage/image-id/47576i32B06623E2C2529D/image-size/medium?v=v2&px=400)
Lineup Box() (borders):
![jthi_1-1669224634821.png jthi_1-1669224634821.png](https://community.jmp.com/t5/image/serverpage/image-id/47577i3279FF5B1E70D7BC/image-size/medium?v=v2&px=400)
-Jarmo