My Account

Box Photo Gallery

A natural and compact way to present your photos online. Use the usable table structure of thumbnails for navigating through your online photo gallery. More Info

Box Flash Gallery - Configuring the component


The component parameters are stored in the Component Inspector panel or the Component Parameter panel.

Component Inspector

An XML file is used to configure the gallery. By editing the XML file, you can add or remove gallery images.

Gallery images are described in the <items> </items> tag. Parameter <item source="…" thumb="…" description="…" /> contains information related to a particular image.

<items>
<item source="…" thumb="…" description="…" link="…" target="…"/>
<item source="…" thumb="…" description="…" link="…" target="…"/>
…………………………………………
</items>

source – Image file name;
thumb - Thumbnail file name
description – Image description;
link – Link to the web-page;
target - Controls where the new document will be displayed;

possible values:
  • "_self" specifies the current frame in the current window.
  • "_blank" specifies a new window.
  • "_parent" specifies the parent of the current frame.
  • "_top" specifies the top-level frame in the current window.


XML file format


<gallery>
<items>
<item source="1.jpg" thumb="1t.jpg" description="Image 1" link="http://flash-gallery.com" target="_blank" />
<item source="2.jpg" thumb="2t.jpg" description="Image 2"/>
<item source="3.jpg" thumb="" description="Image 3" />
. . .
</items>

</gallery>