My Account

3D Wall Flash Gallery

Using this gallery you have possibility to present your favourite photos in the non-standard way as though they have been placed on art gallery walls. More Info

3DWall Photo 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.
Tag <item></item> contains information related to a particular image.
<item>
<thumb>…</thumb>
<source>…</source>
<description>…</description>
<!-- You can add a link to the image using following tag -->
<link>…</link>
<target>…</target>
</item>
thumb - thumbnail file name
source – image 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>
<thumb>1_th.jpg</thumb>
<source>1.jpg</source>
<description>Image 1</description>
<!-- You can add a link to the image using following tag -->
<link>http://DomainName</link>
<target>_blank</target>
</item>
<item>
<thumb>2_th.jpg</thumb>
<source>2.jpg</source>
<description>Image 2</description>
<link>http://DomainName</link>
<target>_blank</target>
</item>

 . . .
</items>

</gallery>