Scrolling message in status window - how can help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • burn
    Confirmed User
    • Dec 2001
    • 507

    #1

    Scrolling message in status window - how can help

    I want a message to blink or scroll across in the status window of the browser when people visist my site anyone know the code for this?

    Trade traffic with my sites!
  • Amputate Your Head
    There can be only one
    • Aug 2001
    • 39075

    #2
    Yeah, I got the code for it.

    ------------------
    SIG TOO BIG

    Comment

    • burn
      Confirmed User
      • Dec 2001
      • 507

      #3
      post it
      Trade traffic with my sites!

      Comment

      • spacedog
        Yes that IS me. Bitch.
        • Nov 2001
        • 14149

        #4
        Remove the [ ] tags & replace with < > for this to work....

        Place this in the head section of your html..

        [SCRIPT LANGUAGE="JavaScript"]
        [!-- Begin
        var hellotext = "YOUR TEXT GOES HERE!"
        var thetext = "";
        var started = false;
        var step = 0;
        var times = 1;

        function welcometext() {
        times--;
        if (!times) {
        if (!started) {
        started = true;
        window.status = hellotext;
        setTimeout("anim()", 1);
        }
        thetext = hellotext;
        }
        }

        function anim() {
        step++;
        if (step==7) step = 1;
        if (step==1) window.status = '>===' + thetext + '===<';
        if (step==2) window.status = '=>==' + thetext + '==<=';
        if (step==3) window.status = '>=>=' + thetext + '=<=<';
        if (step==4) window.status = '=>=>' + thetext + '<=<=';
        if (step==5) window.status = '==>=' + thetext + '=<==';
        if (step==6) window.status = '===>' + thetext + '<==='
        setTimeout("anim()", 200);
        }
        // End --]
        [/script]

        This is just one example..

        ------------------
        Here's Who I Use to Make My Money!
        And This is my Fucking Website!

        [This message has been edited by spacedog (edited 12-16-2001).]

        Comment

        • shunga
          Confirmed User
          • Apr 2001
          • 994

          #5
          You want to annoy your visitors that much?
          Clockwork Cash - ICQ: 355-26-288 / Email: admin AT clockworkcash DOT com
          Asian Paysites : Exclusive Content : NATS or CCBill
          Thai Cuties : Shave Asians : JAVondemand

          Comment

          • burn
            Confirmed User
            • Dec 2001
            • 507

            #6
            that script didn't do nothing
            Trade traffic with my sites!

            Comment

            • Unchilled
              Confirmed User
              • Sep 2001
              • 125

              #7
              <script language="JavaScript">

              < !--
              function scrollit_r2l(seed)
              {
              var m1 = "Add this scrolling message in your status bar. It's Easy ! Change your message to read anything you choose . . . Unchilled";

              var msg = m1;
              var out = " ";
              var c = 1;
              if (seed > 100) {
              seed--;
              var cmd="scrollit_r2l(" + seed + ")";
              timerTwo=window.setTimeout(cmd,100);
              }
              else if (seed <= 100 && seed > 0) {
              for (c=0 ; c < seed ; c++) {
              out+=" ";
              }
              out+=msg;
              seed--;
              var cmd="scrollit_r2l(" + seed + ")";
              window.status=out;
              timerTwo=window.setTimeout(cmd,100);
              }
              else if (seed <= 0) {
              if (-seed < msg.length) {
              out+=msg.substring(-seed,msg.length);
              seed--;
              var cmd="scrollit_r2l(" + seed + ")";
              window.status=out;
              timerTwo=window.setTimeout(cmd,100);
              }
              else {
              window.status=" ";
              timerTwo=window.setTimeout("scrollit_r2l(100)",100 );
              }
              }
              }
              //-->

              </script>

              Comment

              • spacedog
                Yes that IS me. Bitch.
                • Nov 2001
                • 14149

                #8
                Post the url where you placed the code..

                Did you replace the [ ] with < >..

                Did you replace YOUR TEXT HERE with Your scroll message?

                Comment

                • Rick55
                  Registered User
                  • Feb 2001
                  • 63

                  #9
                  onload=welcometext() in your body tag

                  ------------------
                  Put a stripper on your desktop
                  Totem Cash
                  Gilligan's Island was the best show ever made
                  <a href="http://www.omegacash.com/index.asp?ref=110">Make $1.50 P/Min with
                  Live Phone sex</a>

                  Comment

                  • spacedog
                    Yes that IS me. Bitch.
                    • Nov 2001
                    • 14149

                    #10
                    Originally posted by Rick55:
                    onload=welcometext() in your body tag

                    OOPS..Yep..that's important

                    Comment

                    • Rick55
                      Registered User
                      • Feb 2001
                      • 63

                      #11
                      I thought so too.



                      ------------------
                      Put a stripper on your desktop
                      Totem Cash
                      Gilligan's Island was the best show ever made
                      <a href="http://www.omegacash.com/index.asp?ref=110">Make $1.50 P/Min with
                      Live Phone sex</a>

                      Comment

                      Working...