PHPjabbers - tools for webmasters
shopping cart (0 item)
HOME
PRODUCTS
PHP TUTORIALS
PHP FORUM
ABOUT US
CONTACT US
Our products

Flash Gallery

 

There is an explanation for each of the XML file sections in the help file that you will receive.

<gallery> 
  <config> 
    <thumbnails>hide</thumbnails> 
    <useArrows>false</useArrows> 
    <scrolling>true</scrolling> 
    <heightThumbs>80</heightThumbs> 
    <scrollerType>horizontal</scrollerType> 
    <bgThumbs>0xCCFF66</bgThumbs> 
    <arrowColor>0x000000</arrowColor> 
    <linkTarget>_self</linkTarget> 
    <speedShow>3</speedShow> 
  </config> 
  <images> 
    <image1> 
      <url>images/myimage.jpg</url> 
      <effect>fade</effect> 
      <text position="TL">Image description</text> 
      <link>http://www.phpjabbers.com</link> 
    </image1> 
    <image2> 
      <url>images/anotherimage.jpg</url>  
      <effect>wedge</effect> 
      <text position="TL">second image description </text> 
      <link></link> 
    </image2> 
  </images> 
</gallery>

XML configuration file explanation:

  • <thumbnails>hide</thumbnails> - use "show" or "hide" to have the thumbnails bar visible
  • <useArrows>false</useArrows> - use "true" or "false" to show arrows on the thumbnails bar to navigate o
  • <scrolling>true</scrolling> - use "true" or "false" to have the thumbnails bar auto scroll
  • <heightThumbs>80</heightThumbs> - set thumbnails bar size in pixels
  • <scrollerType>horizontal</scrollerType> - use "horizontal" or "vertical"
  • <bgThumbs>0xCCFF66</bgThumbs> - set color for the thumbnails bar
  • <arrowColor>0x000000</arrowColor> - set color for the arrows on the thumbnails bar
  • <linkTarget>_self</linkTarget> - use "_self" or "_blank" to set how images links should open, current or new window
  • <speedShow>3</speedShow> - set speed for thumbnails bar auto scrolling. 1 slowest, 10 fastest.
  • <image1> - start a new image options set.
  • <url>images/myimage.jpg</url> - URL for the used image
  • <effect>fade</effect> - effect used to display the image
  • <text position="TL">Image description</text> - add image description using plain text or basic HTML code and specify its position. TL - top left, TR - top right, BL- bottom left, BR - bottom right, C - center
  • <link>http://www.phpjabbers.com</link> - URL to open when you click on the image
  • </image1> - finish image options set.