|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Scrolling Text
Hi all,
I would like to add scrolling text along the bottom of the browser, I presume using java, is this true and how can I do it? Cheers |
|
#2
|
|||
|
|||
|
You could use a marquee, somethig like
<marquee width="50%" height="20">i want this to scroll</marquee>
__________________
Donna |
|
#3
|
|||
|
|||
|
Something Else
Hi,
THanks for that its great(as I neve new how to do that and wanted too!) but not what i mean sorry, I meant the very bottom of the browser wimdow? Think you use java script? |
|
#4
|
|||
|
|||
|
OHHH you mean in the status bar...
Add this to the head of you page... <Script language="JavaScript"> <!-- var Count = 0; var Text = "Add Your Text Here."; var Speed = 90; var timerID = null; var Timer = false; var i = 0; while (i ++ < 140) Text = " " + Text; function Scroll(){ window.status = Text.substring(Count++, Text.length); if (Count == Text.length) Count = 0; timerID = setTimeout("Scroll()", Speed); Timer = true; } function Start(){ Stop(); Scroll(); } function Stop(){ if(Timer) clearTimeout(timerID); Timer = false; } Start(); //--> </Script> |
|
#5
|
|||
|
|||
|
Thank you, thankyou, thank you.
No realy I maen it. I take it you know your stuff!!! Hopefuly we can keep in touch. |
![]() |
| Viewing: Dev Shed Forums > Web Design > Web Design Help > Scrolling Text |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|