Font Color

  • Thread starter Thread starter Roy
  • Start date Start date
R

Roy

Dear ed.
below is the scrolling text in my status bar could you
please tell me(if it is posible) how to alter the color of
the text.

<script language="javascript">
msg="A New Service From Midshire County Council";
spacer="......";
pos=0;
function ScrollMessage(){
window.status=msg.substring(pos,msg.length)+spacer+
msg.substring(0,pos);
pos++;
if(pos>msg.length)pos=0;
window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();
</Script>

Many thanks for your assistance
 
See your other post

PS Post follow-ups to your posts as responses to them (threaded)

--



| Dear ed.
| below is the scrolling text in my status bar could you
| please tell me(if it is posible) how to alter the color of
| the text.
|
| <script language="javascript">
| msg="A New Service From Midshire County Council";
| spacer="......";
| pos=0;
| function ScrollMessage(){
| window.status=msg.substring(pos,msg.length)+spacer+
| msg.substring(0,pos);
| pos++;
| if(pos>msg.length)pos=0;
| window.setTimeout("ScrollMessage()",200);
| }
| ScrollMessage();
| </Script>
|
| Many thanks for your assistance
 
Back
Top