I figured out a solution that works for me.
I changed the file mod_easyssp.xml in the easyssp module by adding the following field (open the file so you see where to put it):
<param name="ssp_SWFPath" label="SWF Path" type="text" description="Define the .swf file in case of using more galleries" default="slideshowpro.swf" />
Then in the mod_easyssp.php file I added -> $sspswfpath = $params->get('ssp_SWFPath');
like this:
+++++++++
global $mosConfig_absolute_path, $mosConfig_live_site;
$width = $params->get('ssp_width');
$height = $params->get('ssp_height');
$bgcolor = $params->get('ssp_bgcolor');
$paramxmlpath = $params->get('ssp_paramXMLPath');
$unid = $params->get('ssp_unid');
$sspswfpath = $params->get('ssp_SWFPath');+++++++++
AND I added -> <?php echo $sspswfpath; ?>
like this:
+++++++++
var attributes = {}
swfobject.embedSWF("<?php echo JURI::base();?>
<?php echo $sspswfpath; ?>", "<?php echo $unid; ?>", "<?php echo $width; ?>", "<?php echo $height; ?>", "9.0.0", flashvars, params, attributes);
+++++++++
With this you can define a different swf file in (a copy of) the easyssp Module in the Joomla backend.
Then I uploaded a second .swf file called SSP-fotowedstrijd.swf for the second galerie I want to show.
This galerie also has a different param.xml file that I put in a directory; fotowedstrijd/param.xml
I was surprised myself but it works on
www.vriendenvanbiesland.nl Hope you people can use this solution also
