its not that simple, because thumbnail
center in your screen, and flash Imagevue also responds to different screen sizes, so that the amount of thumbnails and margin on the sides will vary also. It is not possible to set a margin from the top, because technically that would require that we aligned thumbnails to the top ... but they are aligned to the center ...
There are a few settings you can work with though, under
settings.thumbnails.thumbnails:
<margin type="array" description="Sets the margin between the sides of the screen and the thumbnails. TOP,RIGHT,BOTTOM,LEFT">100,100,200,100</margin>
The setting above will set the
minimal margin, so that Imagevue will keep the amount of thumbnail columns and rows to fit within these margins. Of course the amount of space of the margin will vary based on the actual width and height of the entire thumbnails area. The settings below may also come into effect depending on the size of the visitors screen. They set the min and max size for the thumbnails area.
<min_width type="integer" description="Sets the minimum width for the thumbnails area" range="0,2000">200</min_width>
<min_height type="integer" description="Sets the minimum height for the thumbnails area" range="0,2000">200</min_height>
<max_width type="integer" description="Sets the maximum width for the thumbnails area" range="0,2000">1200</max_width>
<max_height type="integer" description="Sets the maximum width for the thumbnails area" range="0,2000">1000</max_height>