Questions
Answer
Path issues with SWF files configured via XML
Generally, you must know that the path of the assets the SWF uses (the path of the images specified in the XML file and the path of the XML files themselves) must be relative to the path of the HTML file which embeds the SWF file (and not relative to the SWF file - a common confusion).

More conclusively:
If the folder path of the HTML differs from the product’s folder path (the folder in which the XML files and images folder are located) then you must specify that path through a variable called folderPath.
For example, in the swfobject embedding code, under this line:
var flashvars = {};
add this line:
flashvars.folderPath = "my_path";
and replace my_path with the path you need to follow to go from the location of the HTML file to the folder in which the assets are located. Alternatively you can specify an absolute path. Note that when you specify the folderPath, it must be terminated with a “/”.
If it is still unclear, please read this arbitrary example:
- the index.html file is located at this address on my domain:
http://www.mydomain.com/index.html
- the swfobject.js file is located at this address:
http://www.mydomain.com/js/swfobject.js
- the product's files (XMLs, assets and images folders) are located in this folder:
http://www.mydomain.com/mycomponent/
- the ComponentNameFX.swf file is located in the product's folder on my domain:
http://www.mydomain.com/mycomponent/ComponentNameFX.swf
In this case, the right embedding code in the index.html file using relative paths is:
<script type="text/javascript" src="mycomponent/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.folderPath = "mycomponent/";
var params = {};
params.scale = "noscale";
params.salign = "tl";
params.wmode = "transparent";
params.allowScriptAccess = "always";
var attributes = {};
swfobject.embedSWF("mycomponent/ComponentNameFX.swf", "ComponentNameDiv", "600", "300", "9.0.0", false, flashvars, params, attributes);
</script>
So again, all the paths are relative to the path of the HTML file and note that the folderPath (if specified) should end with a slash (/). You can of course use any path you like for any type of file, but the references must be modified accordingly.
You can also use absolute paths, for example:
flashvars.folderPath = "http://www.mydomain.com/mycomponent/";
Comments
Do you have a question?
you will get an answer in 24 hours, tops.





Casey
Posted 5 months agoHi,
I’m using the Dock Gallery for a page in my website and I cannot get it to show up on my page. I’m thinking it’s a path issue, but I’m not exactly sure where I should look to fix it. The files are all located in a folder called ‘lifedrawing’ and I thought I changed all the file paths to that folder, but no gallery ever shows up. If you could point me to a solution I would greatly appreciate it! Thank you.
Hi,
I checked your website and I found the problem. Our script that you have to insert in your HTML file is incomplete. You deleted a paragraph, above folderPath= you have to insert this code:
var flashvars = {};Lee Messenger
Posted 5 months agoRegarding previous FAQ inquiry and response, I made the flashvars changes as you suggested but the fx_text_menu is still not working.
Please help.
Lee Messenger
Posted 5 months agoI am now trying to have two products on the same page. I have followed your directions and seen the YouTube video but I am not getting it to work.
my website is “www.gashlandumc.org\genesis\index.html”
The index.html file is in the www.gashlandumc.org\genesis\ directory and the two component sub directories are: fx_text_menu and fx_accordion.
Please help me get this working and then I will purchase your complete deal package.
Many thanks.
lee
Hi,
Under var flashvars1 you wrote flashvars.folderPath, but the right code is flashvars1.folderPath. You have to do the same thing with flashvars2.
Lynne
Posted 5 months agoI really want to purchase the coverflow on my website but cannot get it to work….I have tried everything from relative path to absolute path and does not work. can you look at the code and see what I am doing wrong… I want to put the coverflow under the title Dedicated to true romance and as you can see it is not there. Thankyou
Hi,
Firstly, you need to make sure that you have Adobe Flash Player installed.
I checked your website and in the embedding code of the component you named the DIV http://www.montanamoonlight.com/templates/default//coverflow/DivCoverFlowFX. The Div doesn’t require a folderpath, as its main role is to embed the component on the chosen location from your website. It can have any name that you want, and it is imperative that you write the div in the same way in both required places, like this:
swfobject.embedSWF("http://www.montanamoonlight.com/templates/default/coverflow/CoverFlowFX.swf", "DivCoverFlowFX", "403", "216", "9.0.0", false, flashvars, params, attributes);Randy
Posted 5 months agoI am using the banner rotator and I want to know if I can have a aspx page to house the Image information? The reason behind my question is that I would like to have code generate the image inventory base on day. This way I can have a different set of pictures for each day of the week.
Thanks
Hi,
Read this article to learn how to specify a different settings.xml file. You can specify a different images.xml file through assets attribute from the settings.xml file.