I might write a quick walkthrough once I get the next CG-PowerPack update out the door. I set up SimpleViewer for wedding photos, embedded in a Page, works great.
I set up /images and /thumbs folders in my wp root (easiest), and I think I tweaked my buildgallery.php a tiny bit to adjust for my site. viewer.swf and imagedata.xml also reside in the wp root (again, just easiest at the time), as do the other js/etc files.
My Pages’ content looks like:
<excerpt Some Candid Snapshots />
<script language="javascript" type="text/javascript" src="https://www.chait.net/wedding/flash_detect.js"><!-- function getFlashVersion() { return null; }; --></script><script language="javascript" type="text/javascript"><!-- var flashVersion = getFlashVersion(); if (flashVersion < 6) { location.replace("upgrade.html"); } --></script>
<center><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="720" height="550" align="middle" valign="top">
<param name="movie" value="../viewer.swf" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="wmode" value="transparent" />
<param name="BGCOLOR" value="#AC90CB" />
<param name="FlashVars" value="xmlDataPath=../imageData.xml" />
<embed src="../viewer.swf" width="720" height="550" align="middle" valign="top" quality="high" scale="noscale" bgcolor="#AC90CB" type="application/x-shockwave-flash" wmode="transparent" FlashVars="xmlDataPath=../imageData.xml" pluginspage="https://www.macromedia.com/go/getflashplayer" />
</object></center>
Note that for the paths, I needed the “../” as my permalinks have me not in the wp root, but in “/photos/”.
Oh, and the excerpt thing is a custom plugin of mine that force-sets a page’s excerpt field — it goes along with a Theme and plugins called “PagesOnly”, made for building simple sites just using pages, no posts.
-d