Talha Bin Shakir
Talha Bin Shakir

Reputation: 2561

Flash file Link

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

Answers (2)

Daniel A. White
Daniel A. White

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

sshow
sshow

Reputation: 9094

try

<a href="/Home.htm">Downloads</a>

Upvotes: 0

Related Questions