Steve
Fri Jan 16 15:21:13 CST 2004
Jim, be my guest.
I must admit I'm not the original author,
and honestly can't remember where I got it.
However I did modify it somewhat to make it
work when I found it.
--
95isalive
This site is best viewed..................
..............................with a computer
"Jim Buyens" <anonymous@discussions.microsoft.com> wrote in message
news:00f701c3dc70$ea61c630$a001280a@phx.gbl...
> That's actually a cool and clever script.
>
> I still hate the blinking effect, but the script, I like.
>
> I'm going to save this and see if I can use it for
> something else.
>
> Jim Buyens
> Microsoft FrontPage MVP
>
http://www.interlacken.com
> Author of:
> *----------------------------------------------------
> |\---------------------------------------------------
> || Microsoft Office FrontPage 2003 Inside Out
> ||---------------------------------------------------
> || Web Database Development Step by Step .NET Edition
> || Microsoft FrontPage Version 2002 Inside Out
> || Faster Smarter Beginning Programming
> || (All from Microsoft Press)
> |/---------------------------------------------------
> *----------------------------------------------------
>
>
> >-----Original Message-----
> >The other guys will probably shoot me but:
> >In IE it's done with javascript.
> >Paste the following between the head tags
> >in the page:
> >
> ><script type="text/javascript">
> >function doBlink() {
> >var b = document.all.tags("BLINK")
> >for ( i=0; i < b.length; i++)b[i].style.visibility = (b
> [i].style.visibility
> >== "" )? "hidden" : "" }
> >function startBlink() {
> >if (document.all)setInterval("doBlink()",1000)}
> >window.onload = startBlink;
> ></script>
> >
> >Then surround the text you want to blink with
> >blink tags like this:
> ><blink>This text will blink</blink>
> >
> >A word of caution: this script is set to blink
> >1 second on and 1 second off.
> >DO NOT make it blink faster as it can cause
> >seizures in people prone to epileptic seizures.
> >via an effect known as light flicker syndrome.
> >
> >--
> >95isalive
> >This site is best viewed..................
> >...............................with a computer
> >
> >"RickP" <anonymous@discussions.microsoft.com> wrote in
> message
> >news:0a7f01c3dc3f$2001b8e0$a401280a@phx.gbl...
> >> I want to have text in a frame blink on and off. I've
> >> tried the <blink> tag, but it doesn't work. Any ideas
> why,
> >> and what is the fix, please???
> >
> >
> >.
> >