PDA

View Full Version : How to Get Alternative text to pop up over a Flash Move in the Browser?


VisionsIC
05-15-2005, 12:34 AM
question is there any way to engage alternative text to pop up when I mouse over a flash swf movie in my IE browser?

Aaron

Boskic.com
05-15-2005, 12:33 PM
Use EMBED or OBJECT (depending on how do you call flash) tags with TITLE (Used to provide advisory information. The contents of the title attribute will be displayed in a ToolTip during the onmouseover event) parametar.

http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/embed.asp
http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/object.asp

P.S. Look under ALT for OBJECT.

VisionsIC
05-15-2005, 11:41 PM
I read the article on it, but they don't give an example of it's usage?

article:

http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/objects/object.asp

NEED HELP,

Aaron

Ruben
05-16-2005, 10:13 AM
Haven't tried it but I guess it'd be something like this:

<object
classid ="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase ="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
id ="myMovie"
title = "oi! here's your TITLETEXT!!!">
<param name="movie"value="some.swf">
<embed
pluginspage ="http://www.macromedia.com/go/getflashplayer"type="application/x-shockwave-flash"
src ="some.swf"
name ="myMovie"
></embed>

</object>

:rolleyes: - Ruben