
----------------------------------------------------------
----------------------  BASIC SETUP:  --------------------
----------------------------------------------------------


-----------  STEP 1 - Set up file structure  -------------

Place the folder "flash_gallery_pro_files" in the same folder level as the page that will display the player in your site.


-----------  STEP 2 - Add to your page   -----------------

Paste the code below into the source code of your page where you want the gallery to appear:
<div id="flashcontent" style="width:600px; height:450px;">
	<a href="flash_gallery_pro_files/iphone/list.php"  class="iphoneBtn">Launch iPhone Gallery</a>
</div>
<script type="text/javascript" src="flash_gallery_pro_files/js/flashdetect.js"></script>
<script type="text/javascript">
	var so = new SWFObject("flash_gallery_pro_files/flash/flashGalleryPro.swf", "gallery", "100%", "100%", "10", "#333333");
	so.addParam("allowFullScreen", "true");
	so.addVariable("content", "flash_gallery_pro_files/xml/content.xml");
	so.addVariable("settings", "flash_gallery_pro_files/xml/settings.xml");
	so.write("flashcontent");
</script>

You can adjust the width and height of the flash by changing the values "600px"- width and "450px" - height. The above code can also be found in the included flashGalleryPro.html page.


-----------   STEP 3 - Add your content   -----------------

Drag image and video files into flash_gallery_pro_files/images folder, and then open flash_gallery_pro_files/xml/content.xml in an html editor. 
Each album is represented by an <album></album> tag.  
Inside each album, an image or video is represented by and <image></image> tag.

Add new albums using this format:
<album title="Album title" thumbnail="[thumbnail path]" >
<description>Album description goes here</description>
<!--images go here-->	
</album>

Add images using this format:
<image src="[large image path]" thumbnail="[thumbnail path]">Caption Text</image>

Add flash videos using this format:
<image type="video" videoPath="[video path]" src="[large image path]" thumbnail="[thumbnail path]">Caption Text</image>

Add youTube videos using this format:
<image type="youTube" videoPath="[youTube video URL]" src="[large image path]" thumbnail="[thumbnail path]">Caption Text</image>

Paths to images have to be relative to the html page that is displaying the player, not the swf or the xml. 

-----------------------------------------------------------

Full documentation for the player can be found online:
http://flashnifties.com/products/flash-gallery-pro/documentation/

If you are looking for an even easier way to manager your gallery, be sure to check out Nifty Manager: 
http://flashnifties.com/products/nifty-manager/



