[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

The Mage

4/28/2004 1:08:00 AM

Hello,
I am trying to set up a bookstore. I have the book images
on each page by catagorie. I am trying to have text pop
up when someone moves thier mouse over the book image
that gives a discription of the book. I have seen this
done before. Any help would be greatly appreaciated.
Thank you
5 Answers

Lisa Wollin \(MS\)

4/28/2004 1:46:00 AM

0

Hi,

You can provide image tooltips by using the alt attribute for the IMG
element. To add this, select the image in FrontPage and click Properties on
the Format menu. In the General tab, add the text to the Text option.

To do this in code, view the page in Code (or HTML) view and locate the
<img> elements. Add alt="textgoeshere" and replace the text between the
quotes with the description text.

--
Lisa Wollin
Programmer Writer
Microsoft Corporation

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included code samples are subject to the terms specified at
http://www.microsoft.com/info/cp....
"The Mage" <themage@sbcglobal.net> wrote in message
news:52af01c42cbd$45fd8460$a301280a@phx.gbl...
> Hello,
> I am trying to set up a bookstore. I have the book images
> on each page by catagorie. I am trying to have text pop
> up when someone moves thier mouse over the book image
> that gives a discription of the book. I have seen this
> done before. Any help would be greatly appreaciated.
> Thank you


clintonG

4/28/2004 2:28:00 AM

0

Using ALT Tooltips (generated by the HTML ALT attribute) is not
a good idea as the time they can be displayed can not be controlled
(they have a tendency to disappear right when the user is reading
something important) and secondly, ALT Tooltips provide no formatting
so stuffing an ALT Tooltip with everything that needs to be said results
in the display of a difficult to read run-on sentence.

I've played tricks with spaces trying to format ALT Tooltips but the
results are not acceptable. Third, ALT Tooltips provide no interactivity.
Finally, reserve the use of ALT Tooltips to comply with accessibility
requirements as the screen readers rely on them.

The better way to achieve this objective requires using client-side DHTML
to create a DHTML Tooltip which means hiring somebody to develop
or integrate JavaScript and CSS with the Document Object Model.

There are prebuilt libraries such as the DHTML Tooltip Generator [1]
noting that the use of the word 'Tooltip' has become generic when the
Tooltip can be generated using different methodologies. Another library
is overLib [2] which has been around quite awhile.

[1] http://handsonline.net/toolbox/dt...
[2] http://www.bosrup.com/we...

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clinton...



"Lisa Wollin (Microsoft)" <lisawoll@online.microsoft.com> wrote in message
news:eXH5TKMLEHA.1156@TK2MSFTNGP09.phx.gbl...
> Hi,
>
> You can provide image tooltips by using the alt attribute for the IMG
> element. To add this, select the image in FrontPage and click Properties
on
> the Format menu. In the General tab, add the text to the Text option.
>
> To do this in code, view the page in Code (or HTML) view and locate the
> <img> elements. Add alt="textgoeshere" and replace the text between the
> quotes with the description text.
>
> --
> Lisa Wollin
> Programmer Writer
> Microsoft Corporation
>
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> Use of included code samples are subject to the terms specified at
> http://www.microsoft.com/info/cp....
> "The Mage" <themage@sbcglobal.net> wrote in message
> news:52af01c42cbd$45fd8460$a301280a@phx.gbl...
> > Hello,
> > I am trying to set up a bookstore. I have the book images
> > on each page by catagorie. I am trying to have text pop
> > up when someone moves thier mouse over the book image
> > that gives a discription of the book. I have seen this
> > done before. Any help would be greatly appreaciated.
> > Thank you
>
>


=?Utf-8?B?cm9kY2hhcg==?=

4/28/2004 3:42:00 AM

0


>-----Original Message-----
>Hello,
>I am trying to set up a bookstore. I have the book
images
>on each page by catagorie. I am trying to have text pop
>up when someone moves thier mouse over the book image
>that gives a discription of the book. I have seen this
>done before. Any help would be greatly appreaciated.
>Thank you
>.
>FrontPage 2003 has a new feature called Layers. Layers
allows you to superimpose text or graphics in one layer
(Layer2) over an image in another layer (Layer1).
Normally, the superimposed Layer2 is hidden. Then, when
the mouse passes over the normally visable Layer1 the
action causes Layer2 to appear. When you, again, move the
mouse, the now visable Layer2 is turned "off" and it
reverts to its normally hidden state.

cookoonest

4/28/2004 5:12:00 AM

0

http://javascript.internet.com/messages/dynamic-message-w...





"The Mage" <themage@sbcglobal.net> wrote in message
news:52af01c42cbd$45fd8460$a301280a@phx.gbl...
> Hello,
> I am trying to set up a bookstore. I have the book images
> on each page by catagorie. I am trying to have text pop
> up when someone moves thier mouse over the book image
> that gives a discription of the book. I have seen this
> done before. Any help would be greatly appreaciated.
> Thank you


clintonG

4/29/2004 8:40:00 PM

0

I haven't used FrontPage layers. Do you think FrontPage layers provides
more functionality than the DHTML libraries I referenced?

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clinton...



"Dave" <anonymous@discussions.microsoft.com> wrote in message
news:541501c42cd2$bf220a90$a001280a@phx.gbl...
>
> >-----Original Message-----
> >Hello,
> >I am trying to set up a bookstore. I have the book
> images
> >on each page by catagorie. I am trying to have text pop
> >up when someone moves thier mouse over the book image
> >that gives a discription of the book. I have seen this
> >done before. Any help would be greatly appreaciated.
> >Thank you
> >.
> >FrontPage 2003 has a new feature called Layers. Layers
> allows you to superimpose text or graphics in one layer
> (Layer2) over an image in another layer (Layer1).
> Normally, the superimposed Layer2 is hidden. Then, when
> the mouse passes over the normally visable Layer1 the
> action causes Layer2 to appear. When you, again, move the
> mouse, the now visable Layer2 is turned "off" and it
> reverts to its normally hidden state.
>