PVII Knowledge Base
Question #77
How do I make the Geewizz scroller speed slower than the slow setting?
The Answer
Prepared Jan. 2002 by Gerry Jacobsen, PVIIWell, the pre-defined "Slow" speed is pretty slow, but you can manually tweak the code to get it even slower. In source view, look for this line in the P7_runScroller function:
if(spd=="Slow"){sp=(slw)?2:1;fr=(slw)?40:30;
The 40 and 30 are the delay settings between movements. You can increase the delay (thus slowing down the animation) by changing these to higher values, like 70 and 50, so it looks like this:
if(spd=="Slow"){sp=(slw)?2:1;fr=(slw)?70:50;
The 50 would be the delay used by a Windows 2000 or Windows XP computer, and the 70 would be the delay used by all others.
