Predefined parameters

#IMG#

The parameter #IMG# with image number on the page index (example: #IMG0#, #IMG1# etc.) is used to substitute the real images and their attributes in the document (album pages). That means that when plug-in meets tag #IMG0# in the document it'll substitute it textually for relative path to the first image on the page. "Images/1.JPG" (by default images during album creation are being copied to Images subdirectory). Typical example of tag application in HTML template:
<img id="img" border="1" src="#img0#" style="border-color:white;"/>

Please notify, that to receive the correct (valid) XML description, the closing slash in HTML tag description is being used <img=…/>. The correct filling of parameters of HTML tag: name= "value"has the same purpose.

#NAME#

Parameter is used to display the name (image name or image title).

Example:
<title>#NAME0#</title>

#DESCRIPTION#

Parameter is used to display the additional image description (comment).

Example:
<img id="img" border="1" src="#img0#" style="border-color:white;" alt="#DESCRIPTION0#"/>

#INDEX#

Parameter is used to display the sequential number of album image.

#NUMIMAGES#

Parameter is used to display, substitute the total number of images in the album. Can be used to simply display the value or can be used in controlling XML tags, understandable for plug-in.

Example:
<for start='0' end='#NUMIMAGES#' index='#imageindex#'>
<img description="#DESCRIPTION#imageindex## ………………………./>
</for>

Description of the tag <for> application find below in this document.