PC Review Forums Newsgroups Microsoft Word Microsoft Frontpage Re: Blinking Characters/Words

Reply

Re: Blinking Characters/Words

 
Thread Tools Rate Thread
Old 29-06-2003, 02:12 PM   #1
Steve Easton
Guest
 
Posts: n/a
Default Re: Blinking Characters/Words


Place this script between the head tags.

<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>

And then sorround the text you want to blink with
<blink>text example></blink>

The number after "doBlink()", is the amount of time
in milliseconds. 1000 = one second.
Do not set it at less than 1000 or one second due
to useability factors ( can cause epilptic seazures
in some people. ) ( also called "light flicker" syndrome )

This will work in IE versions 5.0 and up.
--
95isalive
This site is best viewed...............
...........................with a computer
"Carlos Renta" <carlos@carlosandsimone.com> wrote in message
news:5c8c01c33dcf$2f3cbc60$7d02280a@phx.gbl...
> I presently use FrontPage 2002, IE 6x and Windows XP
> Pro. For some reason, when I activate the blinking
> option for a word, it will not blink. Can someone tell
> me why?



  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off