WERNER'S SECRET PLACE Scroll Text At The Bottom (2) 
Java Script Scroll Text At Bottom
[ HOME | About Me | Deep Thoughts | Internal | Java Scripts | Java Applets | Animated GIFs | Computer Links | Special Links | Friends | Search Engines ]
[ Previous Page | Next Page ]
 WHAT IT MAKES

You can see the scrolling message the Java Script produces on the bottom of the page.

 FUNCTION CALL (copy/paste directly from here)

<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)">

 SOURCE (copy/paste directly from here)
  <script language="JavaScript">
    <!-- Hide the script from old browsers --
    function scrollit(seed){
      var m1=" THIS IS WHERE YOUR MESSAGE GOES  ";
      var msg=m1;      var out=" ";      var c=0;
      if (seed>100){
        seed--;
        var cmd="scrollit(" + seed + ")";
        timerTwo=window.setTimeout(cmd,7);
      }
      else if (seed<=100 && seed>0){
        for(c=0 ; c < seed ; c++) out+=" ";
        out+=msg; seed--;
        var cmd="scrollit(" + seed + ")";
        window.status=out;
        timerTwo=window.setTimeout(cmd,7);
      }
      else if (seed <= 0){
        if (-seed < msg.length){
          out+=msg.substring(-seed,msg.length);
          seed--;
          var cmd="scrollit(" + seed + ")";
          window.status=out;
          timerTwo=window.setTimeout(cmd,7);
        }
        else{
          window.status=" ";
          timerTwo=window.setTimeout("scrollit(100)",75);
        }
      }
    }
    // --End Hiding Here -->
  </script>
  //<body onLoad="timerONE=window.setTimeout('scrollit(100)',500)">

To the TopLast Update 28/February/1998
http://stud1.tuwien.ac.at/~e9125168/ © Werner Moshammer