Hi,
Just came across the Word field MACROBUTTON NOMACRO [Click
here and type in .......] But I get error: DisplayText
cannot span more than one line!
because I would like to include more that one one of
display text.
Is there a work around?
Thanks
Carol
Cindy M -WordMVP- - 16 Jan 2004 14:21 GMT
Hi NZCarol,
> Just came across the Word field MACROBUTTON NOMACRO [Click
> here and type in .......] But I get error: DisplayText
[quoted text clipped - 3 lines]
>
> Is there a work around?
Not really... Unless you'd put the text into a graphic and
use that as the display, instead of text.
Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep
30 2003)
http://www.word.mvps.org
This reply is posted in the Newsgroup; please post any follow
question or reply in the newsgroup and not by e-mail :-)
Graham Mayor - 16 Jan 2004 16:03 GMT
I can't imagine why you would want so much text for a place marker, but if
you need more explanation, you could use the macrobutton field to actually
run a macro. The following uses the help assistant to pop up a message and
requires an OK click whereon the focus returns to the field.
Sub PopUpAdvice()
Set Balloon = Assistant.NewBalloon
With Balloon
.Text = "Put your text here"
.Button = msoButtonSetOK
.Animation = msoAnimationBeginSpeaking
.Show
End With
End Sub
See http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
E-mail gmayor@mvps.org
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
> Hi,
> Just came across the Word field MACROBUTTON NOMACRO [Click
[quoted text clipped - 7 lines]
> Thanks
> Carol