I want to use this script http://www.dhtmlcentral.com/script/script.asp?id=4
but i can´t make the menu to work when i use it. Please help me
scrollText
scrollText
Julia,
If you haven't already figured it out yourself, I can probably help. I was trying to do the same thing this weekend and finally figured the problem out. In the scrolling text script, I think the last line in the javascript is:
window.onload=runmikescroll
This causes a problem. Comment this line out of the javascript, and use the onLoad option in the <body> tag of the page instead:
<body onLoad="javascript:runmikescroll();">
This should make it work together.
If you haven't already figured it out yourself, I can probably help. I was trying to do the same thing this weekend and finally figured the problem out. In the scrolling text script, I think the last line in the javascript is:
window.onload=runmikescroll
This causes a problem. Comment this line out of the javascript, and use the onLoad option in the <body> tag of the page instead:
<body onLoad="javascript:runmikescroll();">
This should make it work together.
Paul M.