
08-12-2007, 10:29 PM
|
|
Junior Member
|
|
Join Date: Aug 2007
Posts: 3
|
|
solved
figured it out with the help of someone off of the flashKit board. i put this code at the bottom of the page right before the </body>.
<script type="text/javascript">
var delay = setInterval(setScroll, 100);
function setScroll()
{
clearInterval(delay);
window.scrollTo(99999, 0);
}
</script>
here is the working shell of a page:
http://www.mhilldesign.com/mhd/
|