Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Alt for Text ?

Status
Not open for further replies.

paragvshah

Programmer
Jan 11, 2001
109
IN
How can we provide alt text on any image in flash 4.0 ?
 
Create your alternative text and convert it to a movie-clip, make sure that the text is positioned such that teh cross it at the bottom left of the movie-clip when you edit it (if you want to keep with tradition). Drag an instance of this movie-clip onto the main stage and drag it off the page so that the user can't see it, give it an instance name like "alt".

Now, convert your image to a button symbol and insert the following actions on it:

On (Roll Over)
Set Property ("/alt", Visibility) = "1"
Start Drag ("/alt", lockcenter)
End On
On (Roll Out)
Set Property ("/alt", Visibility) = "0"
Stop Drag
End On

OKAY
DAVE dave@davdesign.co.uk

^^^^^^^^^^^^^^^^
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top