Questions
Answer
How to publish a product twice on the same page
If you want to publish the same SWF twice on the same HTML page, you don’t need two SWF files nor two swfobject.js files, but you’ll need different settings.xml files (e.g. settings1.xml, settings2.xml) and different images.xml files (e.g. images1.xml, images2.xml) and also different images (if you don’t want to have the same pictures obviously). You can specify in a settings.xml file which images.xml to load through assets (or imagesXML for some products) attribute.
Note that some products have menu.xml, videos.xml or other names instead of images.xml.
This is an example for 3D Banner FX.
You have to add the following code where you want to display the first banner:
<div id="Div3DBannerFX"></div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.settingsXML= "settings1.xml";
var params = {};
params.base = "";
params.scale = "noscale";
params.salign = "tl";
params.wmode = "transparent";
params.allowFullScreen = "true";
params.allowScriptAccess = "always";
swfobject.embedSWF("3DBannerFX.swf", "Div3DBannerFX", "600", "374", "9.0.0", false, flashvars, params);
</script>
You have to add the following code where you want to display the second banner:
<div id="Div3DBannerFX2"></div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.settingsXML= "settings2.xml";
var params = {};
params.base = "";
params.scale = "noscale";
params.salign = "tl";
params.wmode = "transparent";
params.allowFullScreen = "true";
params.allowScriptAccess = "always";
swfobject.embedSWF("3DBannerFX.swf", "Div3DBannerFX2", "600", "374", "9.0.0", false, flashvars, params);
</script>
If you use a different product then replace the 3D Banner's name with the name of your product.
Comments
Do you have a question?
you will get an answer in 24 hours, tops.





mani
Posted 2 years agohow we attach other pages with one site?
Hi,
Give us more details on what are you trying to do.
Philippe
Posted 2 years agoHi,
I have tried to insert 2 circular galleriesFX on a site I am building.
It works fine if played locally on my cpu, but as soon as I upload it the galleries are not loading.
I have put everything in the same directory as mentioned in your explanation. Must have done something wrong.
Any advice/help much appreciated.
Thx
Hi,
Just looked at your site and discovered one missing image red-001_blkxl.jpg. If you add this image you should have no more problems. Everything else looked OK from here.
Tom
Posted 2 years agoI want to have 2 joomla modules on the same page with the dockmenufx component. How can I realize this I tried using the plugin but the plugin only works for articles not for custom HTML modules.
I really need to get this to work.
Hi,
I checked your website and saw that you have already installed 2 modules of the Dock Menu FX
Paulo
Posted 2 years agoCan I put 6 mp3 components in the same page?
Hi,
You just have to follow the steps from the FAQ. Just remember to add 4 more of these:
var flashvarsX = {}; flashvarsX.settingsXML= "settingsX.xml"; var paramsX = {}; paramsX.scale = "noscale"; paramsX.salign = "tl"; paramsX.wmode = "transparent"; var attributesX = {}; swfobject.embedSWF("component-name.swf", "ComponentDivX", "600", "300", "9.0.0", false, flashvarsX, paramsX, attributesX);Instead of X write: 3 to 6 for each component you want to add.
jason antao
Posted 2 years agoThank you for the reply. I have tried this but what I need to know is the following. I unpacked everything into the flashxml folder like mentioned into a folder carouselmenufx. My problem is now I cannot delete, rename or change that name of that folder.
so my question is where do put the component one and component two folders, and what coding do I use to insert it into the joomla page
{carousel}
also I purchased this product but even when I download the bought version the watermark is still there.
thank you for all your help
Hi,
We’ve checked your website and there is no watermark. Please clear your browser cache after you make any changes.
If you want to publish more than one Flash component in Joomla you need another settings file , e.g. settings2.xml and another * images xml file*, e.g. images2.xml. You can specify in the settings2.xml file to load images2.xml file through imagesXML attribute.
Then you can load the Carousel with the new settings2.xml file using the following code:
{carouselmenufx settings="settings2.xml"}{/carouselmenufx}