How do I change alt text for interactive buttons

G

Guest

After creating an interactive button, how can I change the alternative representation text (the alt text. or mouseover text) for it? For images, it is under image properties on the popup menu, but there is nothing like that for interactive buttons.
 
S

Stefan B Rusynko

Only thru Code View
Select the Button and switch to code view to the alt="button text" attribute
- if you edit the button w/ the interactive button dialog you will have to edit the alt text again

--




| After creating an interactive button, how can I change the alternative representation text (the alt text. or mouseover text) for
it? For images, it is under image properties on the popup menu, but there is nothing like that for interactive buttons.
 
J

Jon Spivey

It's probably preferable to use title for the mouseover text and leave alt
for browsers that can't use images, eg
<img title="text to show on mouseover" alt="Button Text">
or sometimes to hide the alt text for browsers that can display the image
<img title="" alt="Button Text">

Jon
Microsoft MVP - FP
 

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