If you want to use PicsEngine in a webpage you create, here is an easy way to do this.
First of all, install PicsEngine and make sure it works! We suppose that your gallery is installed at: http://www.yourwebsite.com/picsengine/.
Edit the HTML code of your page where you want to include PicsEngine. Insert this code between <head> and </head>
<script src="http://www.yourwebsite.com/picsengine/flash_player.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8"> function saveUrl(u) { window.open(u,"_self"); } </script>
Then, search the node <body></body> and paste this code.
<script type="text/javascript" charset="utf-8">
AC_FL_RunContent(
"src", "http://www.yourwebsite.com/picsengine/picsengine.swf?base=http://www.yourwebsite.com/picsengine/",
"width", "100%",
"height", "100%",
"align", "middle",
"id", "picsengine",
"quality", "high",
"bgcolor", "#000000",
"name", "picsengine",
"allowScriptAccess","always",
"type", "application/x-shockwave-flash",
"pluginspage", "http://www.adobe.com/go/getflashplayer",
"allowFullScreen", "true"
);
</script>
<noscript>
<object type="application/x-shockwave-flash" data="http://www.yourwebsite.com/picsengine/picsengine.swf?base=http://www.yourwebsite.com/picsengine/" width="100%" height="100%">
<param name="movie" value="http://www.yourwebsite.com/picsengine/picsengine.swf?base=http://www.yourwebsite.com/picsengine/" />
<param name="quality" value="best" />
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
</object>
</noscript>
<iframe style="width:0px;height:0px;border:0;padding:0;margin:0;" src="" name="iframeGet" id="iframeGet"></iframe>
Don't forget to replace the urls by your own website (7 instances in the two codes).
You can also change the size of PicsEngine in changing the values 100%.
With PicsEngine 3.2 (or higher), you can pass arguments to load directly an album or a photo.
It's simple, add the arguments album and photo.
Example: open of the 5th album
http://www.votresite.com/picsengine/picsengine.swf?base=http://www.votresite.com/picsengine/&album=5
To open the 5th album and the photo 10 of this same album
http://www.votresite.com/picsengine/picsengine.swf?base=http://www.votresite.com/picsengine/&album=5&photo=10
To integrate this into your website, just replace an url like that in the code above (7 instances).