<!-- TWO STEPS TO INSTALL WRITE AND SLIDE:
1. Paste the coding into the HEAD of your HTML document
2. Copy the onLoad event handler into the BODY tag -->
<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->
Code
<html>
<head><script LANGUAGE="JavaScript">
<!--Total Java Scripts 99 - Next Step Software-->
<!-- Begin
var Message="welcome***to***www.javascriptfreecode.com*****";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",300);
} else {
place++;
window.setTimeout("scrollIn()",50);
}
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
}
}
// End -->
</script>
<!-- STEP TWO: Add this onLoad event handler into the BODY tag -->
Code
<title>E:\scrolls\vertical2_.htm</title>
</head>
<body onLoad="scrollIn()">
<!-- Script Size: 1.09 KB -->
</body>
</html>