Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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) |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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! |
#11
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Agh, Norman, you beat me to the punch! <g
---- Nick Hebb BreezeTree Software http://www.breezetree.com |
#12
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can you create Flashing text in excel | Excel Discussion (Misc queries) | |||
Is it possible to have flashing text in Excel 2003? | New Users to Excel | |||
how do I add flashing text or blinking text in Excel? | Excel Discussion (Misc queries) | |||
How do I insert blinking or flashing numbers or text in Excel? | Excel Worksheet Functions | |||
Flashing Text | Excel Programming |