create a drop down box over a word when you scoll over it

R

road kill

in a doc i want a drop down box to apear over certain words when i scroll
over it.
so i can add info for those who want it with out adding to the doc for
those who dont need it. i dont no what you call this or i probably could find
it. i am useing word
in office 2007
 
G

Graham Mayor

This function is not available in Word. The nearest you could get would
probably be a macrobutton field that would run a macro to pop up a message
eg

{Macrobutton Message Click Here}

to run the macro

Sub Message()
Dim orng As Range
Set orng = Selection.Range
MsgBox "This is a message"
orng.Fields.Add Selection.Range, wdFieldMacroButton, "Message Click Here",
False
End Sub

'Click Here' would be the word(s) you wish to associate with the macro. You
would however have to double click the field to get the response.

You could use dropdown fields in protected forms, but frankly they get in
the way of ordinary document production.

What you need for this type of action (a rollover) is an html editor and the
resulting document would be viewed in a browser.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top