that's brilliant.. i think i can tweak that to use it. lemme have a crack at it and i'll get back to you. Thanks.
Main Topics
Browse All Topics I have a script that fades text which works in IE and Firefox by changing the opacity of an element.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html
<html>
<head>
<title>Fade Text</title>
<style type="text/css">
</style>
</head>
<body>
<table id="blah"><tr><td>How do i make meat gravy? does anyone have a nice recipie?? </td></tr></table>
<script>
var tme=25
var d=1
var fde=1
var max=100
var min=10
var opac=max
function fade(){
if(d==1){opac+=fde}else{op
if(opac>max || opac<min){if(d==0){d=1}els
document.getElementById("b
document.getElementById("b
setTimeout('fade()', tme)}
fade()
</script>
</body>
</html>
What I'd like to add to this function is:
1. Pass an array of 5 or more strings (which can contain quotes, semicolons etc.), that it will cycle through on each fade. i.e fade in 1st string and fade out, fade in 2nd string and fade out and so on, and then after the last one, start again at the first.
2. get the text string to stay completely visible for a fixed duration, lets say 10 seconds (so it can be read), before it starts the next fade sequence.
3. in IE the text is funny.. a bit bold. can that be fixed? i tried changing the color of the text via CSS and it appears to have a black outline...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: pD_EOPosted on 2007-02-04 at 04:38:17ID: 18462766
Like a news fader?
Javascript Projects/News Fader/news_fader.html
I create a news fader a long time ago, have uploaded it so you can see...
http://www.pixeldepth.net/
If that is any good for you, you can use that :)