Blinking Text

M

Martin Racette

Hi,

I have a web page were I have input some text, and the <blink> ... </blink>, but
the text doesn't blink at all, it was tested with both FP 2000 and FP 2003,
under Win200 and WinXP Pro using Explorer 6.01



--
Thank you in Advance

Merci a l'Avance

Martin
 
T

Thomas A. Rowe

Not supported in IE browsers, a NS only tag.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
S

Steve Easton

Martin, a lot of folks don't like blinking text.
However it can be done with javascript in IE.

between the head tags:

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

in the body:

</blink> this text will blink</blink>

Note: the rate in this script is set for one second on,
one second off. ( the number 1000 ) Do *NOT* set it at a
faster rate ( lower number ) as it can cause light flicker syndrome
epileptic seizures in people prone to Epileptic attacks.


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
J

JL Amerson

I don't care for things like background music, flash intros,
blinking/scrolling text. It's annoying as all get out - and a sign of an
amateur designer. And yes, I am guilty of having used it in the past
myself - but not any longer.

KISS it (Keep it simple silly)

--

JoAnn

Do not meddle in the affairs of cats, for they are subtle and will piss on
your computer.
--Bruce Graham



Steve Easton said:
Martin, a lot of folks don't like blinking text.
However it can be done with javascript in IE.

between the head tags:

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

in the body:

</blink> this text will blink</blink>

Note: the rate in this script is set for one second on,
one second off. ( the number 1000 ) Do *NOT* set it at a
faster rate ( lower number ) as it can cause light flicker syndrome
epileptic seizures in people prone to Epileptic attacks.


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer

Martin Racette said:
Hi,

I have a web page were I have input some text, and the <blink> ...
the text doesn't blink at all, it was tested with both FP 2000 and FP 2003,
under Win200 and WinXP Pro using Explorer 6.01



--
Thank you in Advance

Merci a l'Avance

Martin
 
M

MD Websunlimited

KISS -- Keep It Simple Stupid is what I was taught ;>) The Keep It Simple Silly must be the politically correct version <vbg>


--
Mike -- FrontPage MVP '09 - '02
http://www.websunlimited.com


JL Amerson said:
I don't care for things like background music, flash intros,
blinking/scrolling text. It's annoying as all get out - and a sign of an
amateur designer. And yes, I am guilty of having used it in the past
myself - but not any longer.

KISS it (Keep it simple silly)

--

JoAnn

Do not meddle in the affairs of cats, for they are subtle and will piss on
your computer.
--Bruce Graham



Steve Easton said:
Martin, a lot of folks don't like blinking text.
However it can be done with javascript in IE.

between the head tags:

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

in the body:

</blink> this text will blink</blink>

Note: the rate in this script is set for one second on,
one second off. ( the number 1000 ) Do *NOT* set it at a
faster rate ( lower number ) as it can cause light flicker syndrome
epileptic seizures in people prone to Epileptic attacks.


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer

Martin Racette said:
Hi,

I have a web page were I have input some text, and the <blink> ...
the text doesn't blink at all, it was tested with both FP 2000 and FP 2003,
under Win200 and WinXP Pro using Explorer 6.01



--
Thank you in Advance

Merci a l'Avance

Martin

 
J

JL Amerson

It is. I've always heard the Stupid version as well but some people take
things too seriously. :)


MD Websunlimited said:
KISS -- Keep It Simple Stupid is what I was taught ;>) The Keep It Simple
Silly must be the politically correct version said:
--
Mike -- FrontPage MVP '09 - '02
http://www.websunlimited.com


I don't care for things like background music, flash intros,
blinking/scrolling text. It's annoying as all get out - and a sign of an
amateur designer. And yes, I am guilty of having used it in the past
myself - but not any longer.

KISS it (Keep it simple silly)

--

JoAnn

Do not meddle in the affairs of cats, for they are subtle and will piss on
your computer.
--Bruce Graham



Steve Easton said:
Martin, a lot of folks don't like blinking text.
However it can be done with javascript in IE.

between the head tags:

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

in the body:

</blink> this text will blink</blink>

Note: the rate in this script is set for one second on,
one second off. ( the number 1000 ) Do *NOT* set it at a
faster rate ( lower number ) as it can cause light flicker syndrome
epileptic seizures in people prone to Epileptic attacks.


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer

Hi,

I have a web page were I have input some text, and the <blink> ...
</blink>, but
the text doesn't blink at all, it was tested with both FP 2000 and FP
2003,
under Win200 and WinXP Pro using Explorer 6.01



--
Thank you in Advance

Merci a l'Avance

Martin


 
C

chris leeds

just remember, only a stupid schmuck would be offended. ;-)

JL Amerson said:
It is. I've always heard the Stupid version as well but some people take
things too seriously. :)


MD Websunlimited said:
KISS -- Keep It Simple Stupid is what I was taught ;>) The Keep It
Simple
piss
on
your computer.
--Bruce Graham



Martin, a lot of folks don't like blinking text.
However it can be done with javascript in IE.

between the head tags:

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

in the body:

</blink> this text will blink</blink>

Note: the rate in this script is set for one second on,
one second off. ( the number 1000 ) Do *NOT* set it at a
faster rate ( lower number ) as it can cause light flicker syndrome
epileptic seizures in people prone to Epileptic attacks.


--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer

Hi,

I have a web page were I have input some text, and the <blink> ...
</blink>, but
the text doesn't blink at all, it was tested with both FP 2000 and FP
2003,
under Win200 and WinXP Pro using Explorer 6.01



--
Thank you in Advance

Merci a l'Avance

Martin


 
S

Stefan B Rusynko

Or also understand the liability that blinking text Can send some epileptic viewers into seizure

--




| Hopefully he'll decide he doesn't like it.
| ;-)
|
|
| | > Is there any way we can talk you out of using the blinking text? Please?
| >
| >
| > | > > Hi,
| > >
| > > I have a web page were I have input some text, and the <blink> ...
| > </blink>, but
| > > the text doesn't blink at all, it was tested with both FP 2000 and FP
| > 2003,
| > > under Win200 and WinXP Pro using Explorer 6.01
| > >
| > >
| > >
| > > --
| > > Thank you in Advance
| > >
| > > Merci a l'Avance
| > >
| > > Martin
| > >
| > >
| >
| >
|
|
 
S

Steve Easton

Agreed.
I hesitate to post how to do it, but I'd rather post it with the warning
instead of having a reader find it someplace that doesn't post a
warning with the script.

Light Flicker Syndrome can effect people who've never had an epileptic
seizure. First heard of it in the Navy when helicopter pilots who had never
had seizures
started having them in a new model helo. Seems the combination of the rotor
speed
and blade width caused sunlight to flicker at just the right frequency when
the sun was above and ahead of the helo.
There were some guys grounded until the cause was discovered.

--
Steve Easton
MS MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
C

chris leeds

I remember almost having a seizure walking down a country road that was
covered with trees, it felt like I was losing consciousness in the shadow
and regaining in the lighted parts. It would have been worse if I were
driving since the frequency would've been faster. I wasn't completely sober
but it was unsettling none the less. ;-)
 

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

Similar Threads

Help with blinking text 2
FP 2003 problem 6
Blinking TEXT - Help needed 2
Help Needed - Blinking TEXT 2
Blinking text if.... 1
URGENT HELP ON BLINKING/FLASHING CELL 5
Powerpoint presentation 1
Adding a FAVICON 3

Top