Method 1 (This works):
Code
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','590','height','600','src','gallery2/imagevue/imagevue2','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','flashvars','globalpath=../gallery2/', 'movie','gallery2/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=9,0,28,0" width="590" height="600">
<param name="movie" value="gallery2/imagevue/imagevue2.swf" />
<param name="quality" value="high" />
<param name="flashvars" value="globalpath = ../gallery2/" />
<embed src="gallery2/imagevue/imagevue2.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" flashvars="globalpath= ../gallery2/" width="590" height="600"></embed>
</object>
</noscript>Code
<div id="imagevue">
This is where the gallery is placed
</div>
<script type="text/javascript">
//<![CDATA[
var flashvars = {
globalpath = '../gallery2/';
};
swfobject.embedSWF("../gallery2/imagevue/imagevue2.swf", "imagevue", "590", "600", "8.0.0", "../gallery2/imagevue/expressInstall.swf", flashvars, {allowScriptAccess: 'always', allowFullScreen: true, bgcolor: 'ffffff'}, {id: 'imagevue', name: 'imagevue'});
// ]]>
</script>M1 (Inserted by Dreamweaver):
Code
<script src="../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>Code
<script type="text/javascript" src="../gallery2/imagevue/javascript/swfobject.js"></script>First problem I'm having is ---- Why doesn't M2 work?
Second and more important, how do I add a parameter to make M1 use the "theme" as defined in the admin?
Anyone making this work?