A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Random letter colors?



 
 
Thread Tools Display Modes
  #11  
Old December 26th, 2005, 08:35 PM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

Every year I send out a Christmas newsletter to quite a lot of children
(grownup now, and grand children. I have established this as a family
tradition over several years, and they all seem to enjoy their Christmas
letter from Grandad. I use Word to compose it, with text and pictures, and
it's always been a heap of fun. Each sub heading has always been prepared
with alternative red and green letters, and looks real great in that
context. It's just for the kids, and only once a year, but something to do
it automatically would be a great labour saver to say the least.
--
Peter in New Zealand. (Pull the plug out to reply.)
Collector of old cameras, tropical fish fancier, good coffee nutter, and
compulsive computer fiddler.

JoAnn Paules [MVP]" wrote in message
...
I think a lot depends on the target audience and the purpose of the
document. A letter from Santa would be one of the few instances when
something like this is acceptable. (To be honest - I can't really think of
another use but I don't usually produce documents where multi-colored

fonts
would be appreciated. They just don't seem to have a place in a medical
practice.

--

JoAnn Paules
MVP Microsoft [Publisher]



"Suzanne S. Barnhill" wrote in message
...
I have been biting my tongue through this entire thread. I think the idea
of
random colors for text (if by random we're talking about alternating
between
letters) is a *terrible* idea that should have been nipped in the bud!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup
so
all may benefit.

"Graham Mayor" wrote in message
...
Am I missing something here - if the aim of this was as originally

described
"I am writing some Santa letters to some kids
in a playful font and I would like to print them in color" then what's
the
point of the extra sophistication? Any of the suggestions posted would

do
the job. Macros are there to help you work, not to spend more time on
them
than the original job they replace.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


LurfysMa wrote:
On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"
wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or
(myColor = wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub

I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and

green
(for Christmas letters). Then I could either select them randomly or
cycle through them.

I'll play with these variations.

Thanks







  #12  
Old December 27th, 2005, 03:02 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

Why not create a template?

--

JoAnn Paules
MVP Microsoft [Publisher]



"Peter in New Zealand" peterbalplugATxtraSPOTcoSPOTnz wrote in message
...
Every year I send out a Christmas newsletter to quite a lot of children
(grownup now, and grand children. I have established this as a family
tradition over several years, and they all seem to enjoy their Christmas
letter from Grandad. I use Word to compose it, with text and pictures, and
it's always been a heap of fun. Each sub heading has always been prepared
with alternative red and green letters, and looks real great in that
context. It's just for the kids, and only once a year, but something to do
it automatically would be a great labour saver to say the least.
--
Peter in New Zealand. (Pull the plug out to reply.)
Collector of old cameras, tropical fish fancier, good coffee nutter, and
compulsive computer fiddler.

JoAnn Paules [MVP]" wrote in message
...
I think a lot depends on the target audience and the purpose of the
document. A letter from Santa would be one of the few instances when
something like this is acceptable. (To be honest - I can't really think
of
another use but I don't usually produce documents where multi-colored

fonts
would be appreciated. They just don't seem to have a place in a medical
practice.

--

JoAnn Paules
MVP Microsoft [Publisher]



"Suzanne S. Barnhill" wrote in message
...
I have been biting my tongue through this entire thread. I think the
idea
of
random colors for text (if by random we're talking about alternating
between
letters) is a *terrible* idea that should have been nipped in the bud!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup
so
all may benefit.

"Graham Mayor" wrote in message
...
Am I missing something here - if the aim of this was as originally
described
"I am writing some Santa letters to some kids
in a playful font and I would like to print them in color" then what's
the
point of the extra sophistication? Any of the suggestions posted would

do
the job. Macros are there to help you work, not to spend more time on
them
than the original job they replace.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


LurfysMa wrote:
On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"
wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or
(myColor = wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub

I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and

green
(for Christmas letters). Then I could either select them randomly or
cycle through them.

I'll play with these variations.

Thanks









  #13  
Old December 27th, 2005, 11:04 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

Ahem! Now, I must explain that I have been a user of Word ever since ver.
97, so why didn't I think of something so stupidly obvious? I am over 60,
and it is the end of the year, but (flushing bright pink and gazing at the
ceiling) I still can't understand it. Thank you for answering nicely and not
telling me how silly I am not to have thought of it myself.

Peter.

"JoAnn Paules [MVP]" wrote in message
...
Why not create a template?

--

JoAnn Paules
MVP Microsoft [Publisher]



"Peter in New Zealand" peterbalplugATxtraSPOTcoSPOTnz wrote in message
...
Every year I send out a Christmas newsletter to quite a lot of children
(grownup now, and grand children. I have established this as a family
tradition over several years, and they all seem to enjoy their Christmas
letter from Grandad. I use Word to compose it, with text and pictures,

and
it's always been a heap of fun. Each sub heading has always been

prepared
with alternative red and green letters, and looks real great in that
context. It's just for the kids, and only once a year, but something to

do
it automatically would be a great labour saver to say the least.
--
Peter in New Zealand. (Pull the plug out to reply.)
Collector of old cameras, tropical fish fancier, good coffee nutter, and
compulsive computer fiddler.

JoAnn Paules [MVP]" wrote in message
...
I think a lot depends on the target audience and the purpose of the
document. A letter from Santa would be one of the few instances when
something like this is acceptable. (To be honest - I can't really think
of
another use but I don't usually produce documents where multi-colored

fonts
would be appreciated. They just don't seem to have a place in a medical
practice.

--

JoAnn Paules
MVP Microsoft [Publisher]



"Suzanne S. Barnhill" wrote in message
...
I have been biting my tongue through this entire thread. I think the
idea
of
random colors for text (if by random we're talking about alternating
between
letters) is a *terrible* idea that should have been nipped in the

bud!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup
so
all may benefit.

"Graham Mayor" wrote in message
...
Am I missing something here - if the aim of this was as originally
described
"I am writing some Santa letters to some kids
in a playful font and I would like to print them in color" then

what's
the
point of the extra sophistication? Any of the suggestions posted

would
do
the job. Macros are there to help you work, not to spend more time

on
them
than the original job they replace.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


LurfysMa wrote:
On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"


wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or
(myColor = wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub

I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and

green
(for Christmas letters). Then I could either select them randomly

or
cycle through them.

I'll play with these variations.

Thanks











  #14  
Old December 28th, 2005, 12:02 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

We have all missed things that are so darned obvious to others that it's
laughable. I think I'm in the minority because I'll openly admit to doing
that. Either that or I'm looking for the most convoluted way to do something
and it's just a click away.

You know there are pretty cool things you could do with WordArt. And if
you'd ever try a program like Photoshop Elements, you'd be banging out some
spectacular letters. Could be a way to earn a little extra egg money.....

--

JoAnn Paules
MVP Microsoft [Publisher]



"Peter in New Zealand" peterbalplugATxtraSPOTcoSPOTnz wrote in message
...
Ahem! Now, I must explain that I have been a user of Word ever since ver.
97, so why didn't I think of something so stupidly obvious? I am over 60,
and it is the end of the year, but (flushing bright pink and gazing at the
ceiling) I still can't understand it. Thank you for answering nicely and
not
telling me how silly I am not to have thought of it myself.

Peter.

"JoAnn Paules [MVP]" wrote in message
...
Why not create a template?

--

JoAnn Paules
MVP Microsoft [Publisher]



"Peter in New Zealand" peterbalplugATxtraSPOTcoSPOTnz wrote in message
...
Every year I send out a Christmas newsletter to quite a lot of children
(grownup now, and grand children. I have established this as a family
tradition over several years, and they all seem to enjoy their
Christmas
letter from Grandad. I use Word to compose it, with text and pictures,

and
it's always been a heap of fun. Each sub heading has always been

prepared
with alternative red and green letters, and looks real great in that
context. It's just for the kids, and only once a year, but something to

do
it automatically would be a great labour saver to say the least.
--
Peter in New Zealand. (Pull the plug out to reply.)
Collector of old cameras, tropical fish fancier, good coffee nutter,
and
compulsive computer fiddler.

JoAnn Paules [MVP]" wrote in message
...
I think a lot depends on the target audience and the purpose of the
document. A letter from Santa would be one of the few instances when
something like this is acceptable. (To be honest - I can't really
think
of
another use but I don't usually produce documents where multi-colored
fonts
would be appreciated. They just don't seem to have a place in a
medical
practice.

--

JoAnn Paules
MVP Microsoft [Publisher]



"Suzanne S. Barnhill" wrote in message
...
I have been biting my tongue through this entire thread. I think the
idea
of
random colors for text (if by random we're talking about alternating
between
letters) is a *terrible* idea that should have been nipped in the

bud!

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup
so
all may benefit.

"Graham Mayor" wrote in message
...
Am I missing something here - if the aim of this was as originally
described
"I am writing some Santa letters to some kids
in a playful font and I would like to print them in color" then

what's
the
point of the extra sophistication? Any of the suggestions posted

would
do
the job. Macros are there to help you work, not to spend more time

on
them
than the original job they replace.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


LurfysMa wrote:
On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"


wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or
(myColor = wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub

I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and
green
(for Christmas letters). Then I could either select them randomly

or
cycle through them.

I'll play with these variations.

Thanks













  #15  
Old December 28th, 2005, 12:28 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Sat, 24 Dec 2005 15:31:21 -0500, Jay Freedman
wrote:

On Sat, 24 Dec 2005 07:41:05 -0800, LurfysMa
wrote:

On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"
wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or (myColor =
wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub


I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and green
(for Christmas letters). Then I could either select them randomly or
cycle through them.

I'll play with these variations.

Thanks


To find the numbers, go into the VBA editor and press F2 to open the
Object Browser. Type wdColorIndex into the search box and press Enter.
Near the bottom right you'll see a list of "Members of wdColorIndex"
with the names. Click any color name and look at the bottom-most pane
to see its numeric value.

Another way is to open the Immediate window in the editor (shortcut is
Ctrl+G) and type a question mark followed by the color name. When you
press Enter, the value will be printed below (because the question
mark is shorthand for the Print command). For example,

?wdRed

displays the value 6.

Finally, you don't have to know the numbers at all. You can do
something like this:

Dim ColorArray(2) As WdColorIndex ' declares 3 elements 0,1,2
Dim myColor As WdColorIndex

ColorArray(0) = wdBlue
ColorArray(1) = wdRed
ColorArray(2) = wdGreen

and then in the For Each loop select one element from the array this
way:

myColor = ColorArray(Int(3 * Rnd()))

The 3 in this statement is the number of elements in the array -- it
could also be written as

myColor = ColorArray(Int((UBound(ColorArray) + 1) * Rnd()))


Jay,

Thanks for the help. I didn't get time to work on this before I needed
the letters done so I just did it by hand. Now I would like to finish
the macro for next year.

My latest version is show below. I have a few questions:


'===============================================
' Macro to set individual character colors
'===============================================
Sub RandCharColors()

Dim oChar As Range
Dim myColor As Word.WdColorIndex
Dim iColors(1) As WdColorIndex

iColors(0) = wdRed
iColors(1) = wdGreen

Randomize
For Each oChar In Selection.Characters
myColor = iColors(Int((UBound(iColors) + 1) * Rnd()))
oChar.Font.ColorIndex = myColor
Next oChar

End Sub


Is there some way to define the list of colors as a list, rather than
an array? I am trying to avoid the inconvenience of numbering the
array elements and declaring the array size. Maybe something like:

Colors = wdRed wdGreen wdBlue ...

I am looking for some construct that gets defined without any literals
and the code adapts accordingly.

Why "o" prefix or "oChar"?

What's recommended prefix for a color index variable?

--
Running Word 2000 SP-3 on Windows 2000
  #16  
Old December 28th, 2005, 12:32 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Sun, 25 Dec 2005 08:44:16 +0200, "Graham Mayor"
wrote:

Am I missing something here - if the aim of this was as originally described
"I am writing some Santa letters to some kids
in a playful font and I would like to print them in color" then what's the
point of the extra sophistication? Any of the suggestions posted would do
the job. Macros are there to help you work, not to spend more time on them
than the original job they replace.


Actually, I think you are missing quite a lot.

Yes, I wanted the macro to save me the trouble of editing each
individual character. But I also wanted to learn something about how
Word macros and VBA work and have a little fun writing the code.


--
Running Word 2000 SP-3 on Windows 2000
  #17  
Old December 28th, 2005, 12:38 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Mon, 26 Dec 2005 12:48:38 -0600, "Suzanne S. Barnhill"
wrote:

I have been biting my tongue through this entire thread. I think the idea of
random colors for text (if by random we're talking about alternating between
letters) is a *terrible* idea that should have been nipped in the bud!


Oh, well, if you think it's a terrible idea, then I will stop it right
now. I wouldn't want to offend the fun police.

Unfortunately, it's too late for this year. I didn't get the macro
working in time so I had to do it by hand. But the kids thought it was
very cool. They probably need to be educated on what a terrible idea
it is. Would you like to come over and scold them? Maybe you would
like to rap my knuckles with a ruler.

--
Running Word 2000 SP-3 on Windows 2000
  #18  
Old December 28th, 2005, 12:40 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Tue, 27 Dec 2005 08:35:22 +1300, "Peter in New Zealand"
peterbalplugATxtraSPOTcoSPOTnz wrote:

Every year I send out a Christmas newsletter to quite a lot of children
(grownup now, and grand children. I have established this as a family
tradition over several years, and they all seem to enjoy their Christmas
letter from Grandad. I use Word to compose it, with text and pictures, and
it's always been a heap of fun. Each sub heading has always been prepared
with alternative red and green letters, and looks real great in that
context. It's just for the kids, and only once a year, but something to do
it automatically would be a great labour saver to say the least.


I am going to see if I can learn enough VBA to get this macro working.
When I do, I'll post the result. The template solution will only work
if the text you use is the same every time.

--
Running Word 2000 SP-3 on Windows 2000
  #19  
Old December 28th, 2005, 02:33 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Tue, 27 Dec 2005 15:28:51 -0800, LurfysMa
wrote:

On Sat, 24 Dec 2005 15:31:21 -0500, Jay Freedman
wrote:

On Sat, 24 Dec 2005 07:41:05 -0800, LurfysMa
wrote:

On Sat, 24 Dec 2005 16:08:20 +0200, "Graham Mayor"
wrote:

Another possibility is the inverse of Jay's code

Sub RandomColors()
Dim oCh As Range
Dim myColor As Word.WdColorIndex
Randomize
For Each oCh In Selection.Characters
Do
myColor = 14 * Rnd() + 1
Loop Until (myColor = wdBlue) Or (myColor = wdRed) Or (myColor =
wdGreen)
oCh.Font.ColorIndex = myColor
Next oCh
End Sub

I was thinking of defining an array to hold the desired list of
colors. I'll have to figure out what the numbers are for red and green
(for Christmas letters). Then I could either select them randomly or
cycle through them.

I'll play with these variations.

Thanks


To find the numbers, go into the VBA editor and press F2 to open the
Object Browser. Type wdColorIndex into the search box and press Enter.
Near the bottom right you'll see a list of "Members of wdColorIndex"
with the names. Click any color name and look at the bottom-most pane
to see its numeric value.

Another way is to open the Immediate window in the editor (shortcut is
Ctrl+G) and type a question mark followed by the color name. When you
press Enter, the value will be printed below (because the question
mark is shorthand for the Print command). For example,

?wdRed

displays the value 6.

Finally, you don't have to know the numbers at all. You can do
something like this:

Dim ColorArray(2) As WdColorIndex ' declares 3 elements 0,1,2
Dim myColor As WdColorIndex

ColorArray(0) = wdBlue
ColorArray(1) = wdRed
ColorArray(2) = wdGreen

and then in the For Each loop select one element from the array this
way:

myColor = ColorArray(Int(3 * Rnd()))

The 3 in this statement is the number of elements in the array -- it
could also be written as

myColor = ColorArray(Int((UBound(ColorArray) + 1) * Rnd()))


Jay,

Thanks for the help. I didn't get time to work on this before I needed
the letters done so I just did it by hand. Now I would like to finish
the macro for next year.

My latest version is show below. I have a few questions:


'============================================== =
' Macro to set individual character colors
'============================================== =
Sub RandCharColors()

Dim oChar As Range
Dim myColor As Word.WdColorIndex
Dim iColors(1) As WdColorIndex

iColors(0) = wdRed
iColors(1) = wdGreen

Randomize
For Each oChar In Selection.Characters
myColor = iColors(Int((UBound(iColors) + 1) * Rnd()))
oChar.Font.ColorIndex = myColor
Next oChar

End Sub


Is there some way to define the list of colors as a list, rather than
an array? I am trying to avoid the inconvenience of numbering the
array elements and declaring the array size. Maybe something like:

Colors = wdRed wdGreen wdBlue ...

I am looking for some construct that gets defined without any literals
and the code adapts accordingly.


Yes, there is a way. First, change the declaration (the Dim statement)
for the array to

Dim iColors As Variant

"Variant" is a special data type that can contain almost any other
kind of variable. Specifically, it can also hold an array of values.
(There's a long discussion of this idea in the thread "Max/Min
Functions" in the microsoft.public.word.vba.general newsgroup, started
by Greg Maxey on 12/2/2005.) Then you can assign an array of values to
this variable this way:

iColors = Array(wdRed, wdGreen, wdBlue)

This replaces the lines

iColors(0) = wdRed
iColors(1) = wdGreen
iColors(2) = wdBlue

and you can simply add more values inside the parentheses, separated
by commas. Nothing else in the macro has to change.


Why "o" prefix or "oChar"?


That variable is declared as a Range object, and the "o" stands for
"object". There's no standard for these prefixes, though, and you're
free to use whatever system you like (or no system).


What's recommended prefix for a color index variable?


This is less clear, and less important, than the object prefix. I use
a prefix on an object variable to remind myself that a Set statement
is necessary to assign a value to it. I also like to use a "str"
prefix on string variables. For a numeric variable, you could use a
prefix of "i" for "index" or "n" for "number", but it doesn't have
much purpose.

The main thing is not to use the name of a built-in type or a property
of an object as the name of a variable, because that can be confusing.
So "iColors" or "myColor" is good because it's obviously different
from the .Color property of a Font object.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
  #20  
Old December 28th, 2005, 05:23 AM posted to microsoft.public.word.newusers
external usenet poster
 
Posts: n/a
Default Random letter colors?

On Tue, 27 Dec 2005 20:33:16 -0500, Jay Freedman
wrote:

Is there some way to define the list of colors as a list, rather than
an array? I am trying to avoid the inconvenience of numbering the
array elements and declaring the array size. Maybe something like:

Colors = wdRed wdGreen wdBlue ...

I am looking for some construct that gets defined without any literals
and the code adapts accordingly.


Yes, there is a way. First, change the declaration (the Dim statement)
for the array to

Dim iColors As Variant

"Variant" is a special data type that can contain almost any other
kind of variable. Specifically, it can also hold an array of values.
(There's a long discussion of this idea in the thread "Max/Min
Functions" in the microsoft.public.word.vba.general newsgroup, started
by Greg Maxey on 12/2/2005.) Then you can assign an array of values to
this variable this way:

iColors = Array(wdRed, wdGreen, wdBlue)

This replaces the lines

iColors(0) = wdRed
iColors(1) = wdGreen
iColors(2) = wdBlue

and you can simply add more values inside the parentheses, separated
by commas. Nothing else in the macro has to change.


Excellent! Thanks.

Here's my latest version. I have some questions at the end.

'======================= sample code =================
Sub RandCharColors()

Dim oChar As Range
Dim myColor As Word.WdColorIndex
Dim vaColors As Variant
Dim iChar As Integer
Dim sOption As String

'Define the colors to be used
vaColors = Array(wdRed, wdGreen, wdBlack)

'Find out if the user wants random or repeating colors
Const sPrompt As String = "Click on:" & vbCrLf & _
"Yes = random colors" & vbCrLf & _
"No = repeating colors"
Const sTitle As String = "Random Character Colors Macro"
sOption = MsgBox(sPrompt, vbYesNoCancel, sTitle)
If sOption vbYes And sOption vbNo Then 'If neither yes or no,
exit
Call MsgBox("No action taken", , sTitle)
Return
End If

'Apply the colors
iChar = 0
Randomize
For Each oChar In Selection.Characters
If oChar.Text = " " Or oChar.Text = vbCr Or oChar.Text = vbLf Then
myColor = vbBlack
ElseIf sOption = vbYes Then
myColor = vaColors(Int((UBound(vaColors) + 1) * Rnd()))
Else
myColor = vaColors(iChar Mod (UBound(vaColors) + 1))
iChar = iChar + 1
End If
oChar.Font.ColorIndex = myColor
Next oChar

End Sub
'===========================================

1. Is there some way to modify the MsgBox function so that it will put
up buttins with different labels? I would like "Random", "Repeating",
and "Cancel". If not, is there another function to accomplish that?

2. I am testing for certain characters, such as space, CR and LF, so I
can skip them. Otherwise, the repeating pattern gets off. I should
probably add others such as tab. Is there a good way to test the
current character against a list (without doing separate compares) or
is there a way to test if it is a printable character (a-z, 0-9, or
certain specials (!#$%...)?

3. What's the best way to call the macro other than assigning it to a
keyboard shortcut?

Thanks. This has been kinda fun.

--
Running Word 2000 SP-3 on Windows 2000
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA "Rnd" Function: Truly Random? TheRobsterUK General Discussion 2 September 27th, 2005 04:50 AM
word replaced or letter changed removes the next letter word?? word replacement? Running & Setting Up Queries 1 May 4th, 2005 03:39 AM
Make a hidden phrase appear, letter by letter, in random order Jimmy G Powerpoint 5 April 29th, 2005 07:52 PM
Random alpha generator bj Worksheet Functions 3 April 27th, 2005 11:02 PM
New Letter to Contact Gary Contacts 1 July 23rd, 2004 02:36 PM


All times are GMT +1. The time now is 07:17 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.