Font Color

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
 
S

Stefan B Rusynko

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top