Blinking Text

R

Roger

I have Frontpage 2002. I am trying to make text blink.
The text is inside a cell. I have tried everything to
make the text blink, but it won't blink.

I've tried by going into the "font" dialog box and
I've tried working directly with the html.

I'm stumped, any ideas?
 
S

Steve Easton

Requires javascript.
place this 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>

note: the number 1000 indicates the blink rate in milliseconds,
1000 = 1 second. Do not set it lower than 1000 ( one second ) or it can
cause light flicker epileptic attacks in folks subject to epileptic
seizures.


Then where you want the text to blink surround it with
<blink> </blink> like this.

<blink>This text will blink</blink>



I have Frontpage 2002. I am trying to make text blink.
The text is inside a cell. I have tried everything to
make the text blink, but it won't blink.

I've tried by going into the "font" dialog box and
I've tried working directly with the html.

I'm stumped, any ideas?
 
J

Jack Brewster

Roger said:
I have Frontpage 2002. I am trying to make text blink.
The text is inside a cell. I have tried everything to
make the text blink, but it won't blink.

I've tried by going into the "font" dialog box and
I've tried working directly with the html.

I'm stumped, any ideas?

Roger,

You will probably see replies saying, "Don't do that!" I agree, however I
realize that sometimes, even the kitzschiest stuff can have a use. :)

There is a proprietary html tag called <blink> however, I don't think it's
even supported in later generation browsers.

About the only alternative I can think of is to use JavaScript. Try a
Google search for "javascript blink text" and see what you find.
 
S

Steve Easton

You will probably see replies saying, "Don't do that!" I agree, however I
realize that sometimes, even the kitzschiest stuff can have a use. :)

LOL,
As long as it doesn't look like the back glass
of an insane pinball machine.
 
M

Mark Fitzpatrick

Jack is right about the proprietary nature of <blink>. It was a Navigator
only tag so IE and other browsers won't see it. Even if you are able to get
it set to blink directly in FP (without javascript) it won't work in IE
browsers. You should be able to get at the blink option by setting the page
compatibility to custom under Tools | Page Options | Compatibility. Note
this may enable other features that don't work well with all browsers.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
S

Steve Easton

Mark,

The script I posted works in IE.

:)

--
95isalive
This site is best viewed..................
...............................with a computer
Jack is right about the proprietary nature of <blink>. It was a Navigator
only tag so IE and other browsers won't see it. Even if you are able to get
it set to blink directly in FP (without javascript) it won't work in IE
browsers. You should be able to get at the blink option by setting the page
compatibility to custom under Tools | Page Options | Compatibility. Note
this may enable other features that don't work well with all browsers.
 

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

blinking text 10
How to make Word Art Blink 14
Blinking text 4
Flashing or Blinking Text 4
Blinking Text 11
Blinking text code error when sheet is protected 1
How to get an image to flash? 4
Help with blinking text 2

Top