Aslam,

First off, what you're asking for has nothing to do with CF - your question
is HTML related. What you need is a javascript (I've included one that
rotates colors so you can have it alternate between your background color
and a contrasting one to give a blinking effect)


Dave



<SCRIPT LANGUAGE="JavaScript1.2">
<!-- Begin
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
   }
}

var ctext = "Wow! Look at all the pretty colors!  ;-)";
var speed = 1000;
var x = 0;
var color = new initArray(
"red",
"blue",
"green",
"black"
);
if(navigator.appName == "Netscape") {
document.write('<layer id="c"><center>'+ctext+'</center></layer><br>');
}
if (navigator.appVersion.indexOf("MSIE") != -1){
document.write('<div id="c"><center>'+ctext+'</center></div>');
}
function
olor(){ 
if(navigator.appName == "Netscape") {
document.c.document.write('<center><font color="'+color[x]);
document.c.document.write('">'+ctext+'</font></center>');
document.c.document.close();
}
else if (navigator.appVersion.indexOf("MSIE") != -1){
document.all.c.style.color = color[x];
}
(x < color.length-1) ? x++ : x = 0;
}
setInterval("chcolor()",1000);
// End -->
</script>








----- Original Message ----- 
From: aslam bajaria <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 08, 2000 5:41 PM
Subject: Re: How to make a text flash in CFII


> First of all, I want to thank you for your concern and
> warning about something I was not aware of.
> 
> I have verified and there are no regulations that my
> company is subject to. The site I am developing is a
> secure site and is for use strictly by company
> employees and not for general use.
> 
> Please let me know if there is a code that does
> flashing of text.
> 
> Appreciate.
> A.B.
> 
> --- Randy Hogg <[EMAIL PROTECTED]> wrote:
> > Two years ago, I was required to REMOVE all flashing
> > text in an ap
plication
> > in order to comply with OSHA rules.  The contention
> > was that certain medical
> > conditions could be aggravated by flashing.  Better
> > check any regualtions
> > that your industry is subject to.
> > Randy
> >
> >
> > ----- Original Message -----
> > From: "Ric Smith" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Monday, May 08, 2000 2:30 PM
> > Subject: Re: How to make a text flash in CF
> >
> >
> > > Hmmmm..... You sure you want that text to flash?
> > >
> > > Are you sure your users want that text to flash?
> > >
> > > Anyway, I think the whole idea of flashing text
> > died and IE
> > > doesn't have a <blink> tag because it made people
> > sick.
> > >
> > > I suppose you could use dhtml and position an
> > opaque layer
> > > over some text, put a timer on it, and turn
> > visibility on and off.
> > >
> > > -- Ric Smith
> > >
> > >
> > >
> > > > Hi All,
> > > > I know how to make a text flash in CF for
> > netscape. I
> > > > am able to do it by writing the text in
> > > > <blink></blink>
> > > > tag.
> > > >
> > > > Is there a way that if the user is using IE, the
> > text
> > > > can be made to flash?
> > > >
> > > > Appreciate.
> > > > A.B.
> > > >
> > > >
> > __________________________________________________
> > > > Do You Yahoo!?
> > > > Send instant messages & get email alerts with
> > Yahoo! Messenger.
> > > > http://im.yahoo.com/
> > >
> > >
> >
> --------------------------------------------------------------------------
> > > ----
> > > > Archives: http://www.eGroups.com/list/cf-talk
> > > > To Unsubscribe visit
> > >
> >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or
> > > send a message to
> > [EMAIL PROTECTED] with 'unsubscribe'
> > in
> > > the body.
> > >
> > >
> >
> --------------------------------------------------------------------------
> > ----
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or
> > send a message to [EMAIL PROTECTED]
> > with 'unsubscribe' in
> > the body.
> >
> >
> --------------------------------------------------------------------------
----
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> >
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> > or send a message to
> > [EMAIL PROTECTED] with 'unsubscribe'
> > in the body.
>
> __________________________________________________
> Do You Yahoo!?
> Send instant messages & get email alerts with Yahoo! Messenger.
> http://im.yahoo.com/
> --------------------------------------------------------------------------
----
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to