I've crossed-posted this to the vba.beginners newsgroup.
This is an instance where you can't record a macro, you'll have to write it
or modify what you record.
http://word.mvps.org/FAQs/MacrosVBA/ModifyRecordedMacro.htm
What, exactly do you want your macro to do?
Why? (Important because there may be easier ways to accomplish what you
want.)
Which version of Word?
A simple on-entry macro to display something:
Sub OnEntryMacro1()
MsgBox _
Prompt:="This is the help text.", _
Title:="Help for this field."
End Sub
Note, this has nothing to do with the help text you put into the field. The
text is in the macro. You could create one that would pull out the field's
help text, instead. But I don't know how.
--
Charles Kenyon
Word New User FAQ & Web Directory:
http://addbalance.com/word
Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide)
http://addbalance.com/usersguide
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.