Yes, its certainly possible - In fact, we hoped to have made it more flexible to integrate V2 into existing pages. Primarily because V2 has no requirements to dimensions, and can be integrated into any layout/size.
I made this quick example in a fictional page:
https://www.photo.gallery/decens/mygallery.html
Of course, the gallery configuration should be optimized to work better within a restricted layout, but we will have to provide examples for that later.
For the example above, I simply used the default SWF embedding code from dreamweaver. Also, its important to include the
globalpath parameter if your document is pointing to the "imagevue2.swf" from a remote folder.
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','100%','height','460','title','myimagevue','src','../soda/imagevue/imagevue2','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','flashvars','globalpath=../soda/','movie','../soda/imagevue/imagevue2' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="460" title="myimagevue">
<param name="movie" value="../soda/imagevue/imagevue2.swf" />
<param name="quality" value="high" />
<param name="flashvars" value="globalpath=../soda/" />
<embed src="../soda/imagevue/imagevue2.swf" width="100%" height="460" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" flashvars="globalpath=../soda/"></embed></object>
We will provide extended documents for optimized HTML integration after stable release.