Hi
I am building a website with a flash navigation system using HTML pages that load in for each button. Using iframes works in IE7 but not in IE6.
below is my code. The flash loads into the top iframe, the html pages load into the bottom.
<body>
<iframe hspace="0" vspace="0" width=100% height=363 frameborder="0" name="contents" target="main" marginwidth="0" scrolling="no" marginheight="0" src=http://www.webdeveloper.com/forum/archive/index.php/"left.htm">
</iframe>
<iframe width=100% height="365%" frameborder="0" id="kirupa" name="kirupa" marginwidth="0" marginheight="0" scrolling="no" src=http://www.webdeveloper.com/forum/archive/index.php/"main.htm" target="kirupa">
</iframe>
</body>
</html>
Any other suggestions on how to build it?
Any help appreciated,
thanks,
lainerMy only suggestion would be check out some of the links in my sig and build it right.Don't use frames on your site please! If you want the same navigation on every page (and you probably do) use whichever method your server allows for including a file (a user control in .net is a good solution). You should also include a non-flash version for users who don't have flash, look up swfobject on the net - it's a damn good solution. If you want to see the effects of not having flash, Download the accessibility toolbar and then disable active-X in IE (it's IE specific I think - sorry). Try the site in my signature and note that there are static html content area that replace the flash movies. Just image what happens if a visitor cannot navigate your site because they don't have flash - they move on to a different site! Happy coding!
I am building a website with a flash navigation system using HTML pages that load in for each button. Using iframes works in IE7 but not in IE6.
below is my code. The flash loads into the top iframe, the html pages load into the bottom.
<body>
<iframe hspace="0" vspace="0" width=100% height=363 frameborder="0" name="contents" target="main" marginwidth="0" scrolling="no" marginheight="0" src=http://www.webdeveloper.com/forum/archive/index.php/"left.htm">
</iframe>
<iframe width=100% height="365%" frameborder="0" id="kirupa" name="kirupa" marginwidth="0" marginheight="0" scrolling="no" src=http://www.webdeveloper.com/forum/archive/index.php/"main.htm" target="kirupa">
</iframe>
</body>
</html>
Any other suggestions on how to build it?
Any help appreciated,
thanks,
lainerMy only suggestion would be check out some of the links in my sig and build it right.Don't use frames on your site please! If you want the same navigation on every page (and you probably do) use whichever method your server allows for including a file (a user control in .net is a good solution). You should also include a non-flash version for users who don't have flash, look up swfobject on the net - it's a damn good solution. If you want to see the effects of not having flash, Download the accessibility toolbar and then disable active-X in IE (it's IE specific I think - sorry). Try the site in my signature and note that there are static html content area that replace the flash movies. Just image what happens if a visitor cannot navigate your site because they don't have flash - they move on to a different site! Happy coding!