View Full Version : Scrollable content script - not scrolling
tmate
06-08-2013, 12:57 AM
1) Script Title: Scrollable content script
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex11/scrollc2.htm
3) Describe problem:
have used this script before with no problem.
So... I'm not sure why, but Not able to get the text to scroll.
http://www.tmatelson.com/CR/installations.html
jscheuer1
06-08-2013, 03:53 AM
It looks like you're mixing an older version of this script with the current one. The script code you have is from the current version. However, the markup you have here:
<a href="#" onMouseover="moveup()" onMouseout="clearTimeout(moveupvar)"><img src="images/up.gif" border=0></a><br />
<br /><br /><a href="#" onMouseover="movedown()" onMouseout="clearTimeout(movedownvar)"><img src="images/down.gif" border=0></a>
is from an older version. It should be:
<a href="#" onMouseover="move('container',5)" onMouseout="clearTimeout(move.to)"><img src="images/up.gif" border=0></a><br />
<br /><br /><a href="#" onMouseover="move('container',-5)" onMouseout="clearTimeout(move.to)"><img src="images/down.gif" border=0></a>
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.