Here's an example with Sweet Home Alabama. Just copy everything as is, paste into notepad and save it with quotations around the file name to specify .html. ex. File->Save As->"sweethome.html". This will save the file with a .html extension rather than .txt. Start at the <html> and end at the </html>. The var speed controls the tempo. Not sure if this would help, but, with a common style sheet you could simply include this java script, css style sheet and format a bulk of songs with all common font size, etc... The BPM notepad concept really got me thinking especially with the ability to insert images, establish things precisely so that they match the tempo of the song.
Enjoy!
Todd
<html>
<head>
<title>
Test
</title>
<SCRIPT language=JavaScript1.2>
//change 1 to another integer to alter the scroll speed. Greater is faster
var speed=1
var currentpos=0,alt=1,curpos1=0,curpos2=-1
function initialize(){
startit()
}
function scrollwindow(){
if (document.all &&
!document.getElementById)
temp=document.body.scrollTop
else
temp=window.pageYOffset
if (alt==0)
alt=2
else
alt=1
if (alt==0)
curpos1=temp
else
curpos2=temp
if (curpos1!=curpos2){
if (document.all)
currentpos=document.body.scrollTop+speed
else
currentpos=window.pageYOffset+speed
window.scroll(0,currentpos)
}
else{
currentpos=0
window.scroll(0,currentpos)
}
}
function startit(){
setInterval("scrollwindow()",50)
}
window.onload=initialize
</SCRIPT>
</head>
<body>
<font size = 10>
Sweet Home Alabama
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
Big wheels keep on turning
Carry me home to see my kin
Singing songs about the Southland
I miss Alabamy once again
And I think its a sin, yes
1.
2.
3.
4.
5.
Well I heard mister Young sing about her
Well, I heard ole Neil put her down
Well, I hope Neil Young will remember
A Southern man don't need him around anyhow
Sweet home Alabama
Where the skies are so blue
Sweet Home Alabama
Lord, I'm coming home to you
In Birmingham they love the governor
Now we all did what we could do
Now Watergate does not bother me
Does your conscience bother you?
Tell the truth
Sweet home Alabama
Where the skies are so blue
Sweet Home Alabama
Lord, I'm coming home to you
Here I come Alabama
Now Muscle Shoals has got the Swampers
And they've been known to pick a song or two
Lord they get me off so much
They pick me up when I'm feeling blue
Now how about you?
Sweet home Alabama
Where the skies are so blue
Sweet Home Alabama
Lord, I'm coming home to you
Sweet home Alabama
Oh sweet home baby
Where the skies are so blue
And the governor's true
Sweet Home Alabama
Lordy
Lord, I'm coming home to you
Yea, yea Montgomery's got the answer
</font>
</body>
</html>




