Is it possible to create alt tags in director, you know the ones where you mouse over an icon or picture and a little label appears saying what the picture or button actually is.
put this script on each object. sprite(1) is a text member, change the sprite channel to match where it is in your movie. Make sure you have a visible back color.
untested, may need some work.
property altmsg
on getPropertyDescriptionList
dics = [:]
addprop dics,#altmsg,[#default:"",#format:#string,#comment:"alt message"]
return dics
end getPropertyDescriptionList
on mouseover
sprite(1).loc = point(the mouseH, the mouseV)
member("alttag".text = altmsg
end
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.