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
.style.visibility = (b .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
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???
.