Hello,
great work!
I want to change the size of the shown pictures. You wrote that they are scaled proportionally in the available browser / container width and height. I have placed the file in a div which has the same size as the file. My pictures have the size to completely cover all thumbnails. But there seems to be a margin designed. Where can I change that?
Thanks

well there is no scrollbar feature in the gallery itself but if you want the browser’s scrollbar to appear then you have to set the width and height of the swf file in the html embedding to fixed value instead of 100% values.
For example change the following line in the html page in which you are using the gallery swf file (I assume that you are using the index.html file which you have got with the source files):var so = new SWFObject("preview.swf", "XML_Grid_Slideshow", "100%", "100%", "8", "#000000");with:var so = new SWFObject("preview.swf", "XML_Grid_Slideshow", "1000", "1200", "8", "#000000");