How did you get the "Moonlight drowns out all the brightest stars" To move? :)
Just put this code under
<br />var rev = “fwd”;<br />function titlebar(val)<br />{<br /> var msg = “PUT WHAT YOU WANT IT TO SAY HERE”;<br /> var res = “”;<br /> var speed = 115;<br /> var pos = val;<br /> msg = “PUT WHAT YOU WANT IT TO SAY HERE”;<br /> var le = msg.length;<br /> if(rev == “fwd”){<br /> if(pos < le){<br /> pos = pos+1;<br /> scroll = msg.substr(0,pos);<br /> document.title = scroll;<br /> timer = window.setTimeout(“titlebar(“+pos+”)”,speed);<br /> }<br /> else{<br /> rev = “bwd”;<br /> timer = window.setTimeout(“titlebar(“+pos+”)”,speed);<br /> }<br /> }<br /> else{<br /> if(pos > 0){<br /> pos = pos-1;<br /> var ale = le-pos;<br /> scrol = msg.substr(ale,le);<br /> document.title = scrol;<br /> timer = window.setTimeout(“titlebar(“+pos+”)”,speed);<br /> }<br /> else{<br /> rev = “fwd”;<br /> timer = window.setTimeout(“titlebar(“+pos+”)”,speed);<br /> } <br /> }<br />}<br />titlebar(0);<br />
** Make sure that you replace both lines with what you want your tab to say (just copy the same thing into both places) and make sure that the color of your text inside the quotations is green (along with the quotation marks) - if it’s white then it won’t work! To fix it if it is white, just delete the white quotation marks and type a new quotation mark in and it will give you two green quotation marks, ready to be filled in. :)











