Reputation: 2561
I have a flash file menu i am having problem while link it to my other web pages the code is below.
<div id="flashcontent">
<a href="http://www.Yahoo.com.com">Home</a>|
<a href="http://www.gmail.com">Products</a>|
<a href="Home.htm">Downloads</a>|
<script type="text/javascript">
var so = new SWFObject("10.swf","10","170","415","8","#3D596C");
so.addParam("allowScriptAccess","always"); so.write("flashcontent");
</script>
The first two link are working as you can see i have link with http but the third link which i link to my directory page is not working. someone please help me out how i write this for my local directory page. Thanks
Upvotes: 0
Views: 211
Reputation: 190945
It might be that this file is at a deeper directory say /mydirectory/page
and the Downloads link is at /Home.htm
. Here is a great resource.
http://www.compugoddess.com/relvsabs.htm
Upvotes: 1