Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default flashing text in Excel

Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 106
Default flashing text in Excel

You could write code to change the font color back and forth between white and whatever on a timer. Would that solve your problem?

--
RMC,CPA


"John Davies" wrote in message ...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default flashing text in Excel

No built in support for it.

obviously you could cobble something together in VBE, but you would suck up
a lot of resources.


--
Regards,
Tom Ogilvy

"John Davies" wrote in message
...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default flashing text in Excel

John,

Here's an approach you could adapt to your needs that I put together in
response to a question about making a range flash a few weeks ago.

However, I think you might genuinely be better off using conditional
formatting for your font colours and forget about the flashing.

Robin Hammond
www.enhanceddatasystems.com

Private appTime As Double
Private rngSaved As Range
Private bStop As Boolean

Sub Test()
InitBlinking ActiveSheet.Range("a1:d5")
End Sub

Sub InitBlinking(rngBlink As Range)
Set rngSaved = rngBlink
bStop = False
Blink
End Sub

Sub StopBlinking()
bStop = True
End Sub

Public Sub Blink()
Dim rngCell As Range
For Each rngCell In rngSaved
With rngCell
If bStop Then
.Interior.ColorIndex = 2
Else
.Interior.ColorIndex = IIf(.Interior.ColorIndex = 2, 3, 2)
End If
End With
Next rngCell
If Not bStop Then
appTime = Now() + TimeValue("00:00:01")
Application.OnTime appTime, "Blink"
End If
End Sub


"John Davies" wrote in message
...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 162
Default flashing text in Excel

Do you really need the text to flash? That's really annoying to users.
Why not just change the text to bold red, or white with a red
background?

Also, it's well documented that flashing text can induce seizures -
especially in epileptics. (I'm not making this up, but I'm too lazy to
search for a reliable source. ;-)


----
Nick Hebb
BreezeTree Software
http://www.breezetree.com



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default flashing text in Excel

Nick,
I have read about the seizures aspects also.
I'm not epileptic, but would find flashing cell incredibly annoying,
especially if I did not know the cause and what I was supposed to do about
it.

To the OP, if the point is that important that the user MUST react, give
them a msgbox or similar with instructions.

NickHK

"Nick Hebb" wrote in message
ups.com...
Do you really need the text to flash? That's really annoying to users.
Why not just change the text to bold red, or white with a red
background?

Also, it's well documented that flashing text can induce seizures -
especially in epileptics. (I'm not making this up, but I'm too lazy to
search for a reliable source. ;-)


----
Nick Hebb
BreezeTree Software
http://www.breezetree.com



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 106
Default flashing text in Excel

This user hasn't responded to anything since his OP. I don't think he is even reading this stuff.
--
RMC,CPA


"John Davies" wrote in message ...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)


  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default flashing text in Excel

Hi Richard,

Maybe he has had a bad reaction to the flashing?!

---
Regards,
Norman



"R. Choate" wrote in message
...
This user hasn't responded to anything since his OP. I don't think he is
even reading this stuff.
--
RMC,CPA


"John Davies" wrote in message
...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)




  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 162
Default flashing text in Excel

This user hasn't responded to anything since his OP. I don't think he is even reading this stuff.

He probably figured out how do it own his own then promptly went into
seizure. Doh!

  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 162
Default flashing text in Excel

Agh, Norman, you beat me to the punch! <g

----
Nick Hebb
BreezeTree Software
http://www.breezetree.com



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default flashing text in Excel

Hi Nick,

But I had an advantage - I had my eyes shut!

And, to forestall the obvious rejoinder, yes that explains much about my
coding style!

---
Regards,
Norman



"Nick Hebb" wrote in message
ups.com...
Agh, Norman, you beat me to the punch! <g

----
Nick Hebb
BreezeTree Software
http://www.breezetree.com



  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 106
Default flashing text in Excel

Hi Norman,

Hope all is well with you. I see you are still helping the masses. If you get time, please read my post about importing external
data. I've got an issue that is driving me crazy and I don't think my responders have a full grip on the real issues involved. I'll
bet you would be able to tell me what to do. If you get a chance, I posted it last night. There were several replies and
discussions, but nothing that really gets to the heart of the matter.

In any event, I'm sure we'll visit soon on something. You take care.

Richard
--
RMC,CPA


"Norman Jones" wrote in message ...
Hi Richard,

Maybe he has had a bad reaction to the flashing?!

---
Regards,
Norman



"R. Choate" wrote in message
...
This user hasn't responded to anything since his OP. I don't think he is
even reading this stuff.
--
RMC,CPA


"John Davies" wrote in message
...
Is it possible to have flashing text in Excel?
Say Cell A3 = 1 - Cell A4 = "Correct" (Flashing Blue Text)
Cell A3 = 2 - Cell A4 = "Incorrect" (Flashing Red Text"
Cell A3 = 3 - Cell A4 = "Try Again" (Non Flashing)





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
can you create Flashing text in excel Blu Vein Excel Discussion (Misc queries) 1 June 13th 08 12:56 AM
Is it possible to have flashing text in Excel 2003? Scott New Users to Excel 2 October 8th 07 05:55 AM
how do I add flashing text or blinking text in Excel? Paula Brennan Excel Discussion (Misc queries) 1 October 31st 06 07:27 AM
How do I insert blinking or flashing numbers or text in Excel? Sanjay Mathur Excel Worksheet Functions 2 February 11th 05 07:20 PM
Flashing Text ExcelMonkey[_23_] Excel Programming 5 January 27th 04 04:32 PM


All times are GMT +1. The time now is 03:37 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"