Questions
Answer
How to load a product with a different settings.xml file

The product's SWF file loads by default the settings.xml file which contains all the parameters of the component. You can rename this file but you have to specify the new name using the following code:
var flashvars = {};
flashvars.settingsXML = "your_name.xml";
like in this example for the 3D Banner FX:
<div id="Div3DBannerFX"></div>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.settingsXML = "your_name.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>
The assets (images, videos, text etc.) displayed by the product are specified in the images.xml (or menu.xml, videos.xml, big.xml, media.xml for other products). You can also rename this file but you have to specify in the settings.xml file through assets element what's the new name, like this example:
assets value="your_name_images.xml"
The Banner Rotator FX, Dock Menu FX and 3D Carousel Menu AS2 FX has imagesXML instead of assets element in the settings.xml file. The Video Player FX has media_url.
Comments
Do you have a question?
you will get an answer in 24 hours, tops.





anderson Country Brazil
Posted 2 years agogood night, I downloaded the ( cover flow FX ) is very good, but I can not use the method ( flashvars.settingsXML) to use other settings.XML file, when I use the method exemplified by you (flashvars.settingsXML= “settings1.xml”;) the file settings1.xml is not changed, still carrying the file old settings.xml. I have done all the necessary changes in the file settings1.xml to use image1.xml. it’s all in the same directory but does not work. what am I doing wrong?
Hi,
Please redownload your archive just to make sure you’re using the latest version and try again. In case you’re still having issues send us the link to your website and we will check it.
dnelson
Posted 2 years agois there a way to make Flash XML Banner Rotators expand with the browser.
For example a viewer zooms in right now the banner becomes small.
please help
Hi,
I’m sorry but this feature is not implemented.
abbas
Posted 2 years agoError:
Warning: dockmenufx_get_embed_code() [function.dockmenufx-get-embed-code]: Node no longer exists in D:\wamp\www\wordpress\wp-content\plugins\dock-menu-fx\dock-menu-fx.php on line 26
Warning: dockmenufx_get_embed_code() [function.dockmenufx-get-embed-code]: Node no longer exists in D:\wamp\www\wordpress\wp-content\plugins\dock-menu-fx\dock-menu-fx.php on line 26
Warning: dockmenufx_get_embed_code() [function.dockmenufx-get-embed-code]: Node no longer exists in D:\wamp\www\wordpress\wp-content\plugins\dock-menu-fx\dock-menu-fx.php on line 27
Warning: dockmenufx_get_embed_code() [function.dockmenufx-get-embed-code]: Node no longer exists in D:\wamp\www\wordpress\wp-content\plugins\dock-menu-fx\dock-menu-fx.php on line 27
Hi,
Please redownload the plugin and follow the install instructions carefully.
Sushanta Roy
Posted 2 years agoThanx for the Response. I have done all the changes as per your instruction. then also it is not working. Kindly check it in my website www.ganapatimatchmakers.com/flashdemo/indexx.html
Eagerly waiting for your response.
Hi,
Please provide us the right link to your test page because the one you gave us doesn’t work. Anyway, I see that on your main page the banner works.
Sushanta Roy
Posted 2 years agoHi !
I am trying to include banner-rotator flash into my site. I kept all the files in a single folder. and another subfolder for images. This is showing the frame but not showing the images. Sending Index.HTML code. Please help.
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml” lang=“en” xml:lang=“en”> <head> <title></title> <meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” /> <script type=“text/javascript” src=“http://www.ganapatimatchmakers.com/flashdemo/swfobject.js”></script> <script type=“text/javascript”> var flashvars = {}; flashvars.folderPath = “flashdemo/”; flashvars.settingsXML = “settings.xml”; var params = {}; params.scale = “noscale”; params.salign = “tl”; params.wmode = “transparent”; var attributes = {}; swfobject.embedSWF(“banner.swf”, “BannerDiv”, “400”, “250”, “9.0.0”, false, flashvars, params, attributes); </script> </head> <body> <div id=“BannerDiv”> <b>TEST</b> <a href=“http://www.adobe.com/go/getflashplayer”> <img src=“http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif” alt=“Get Adobe Flash player” /> </a> </div> </body>
</html>
Thx
Hi,
I checked your website and I see that you’re having a html file called indexx.html that doesn’t work because you need to make some changes to it like this:
Change this line:
to this:
Also, change this line:
to this:
Also, I see that in your images.xml file you’re using the path images folder but you have a folder called Images (with capital I). Make these changes and it will work.