[Zope] How to do a mouse over in Zope

Gordon Holtslander gordon.holtslander@sk.lung.ca
Mon, 29 Oct 2001 09:15:18 -0600


This solves the problem of all the instructions showing up in my page.
Thanks for that, but it still doesn't make the image "mouse over." It only
shows the feedback_up image. The link works, the regular image shows, but no
change happens when I move my mouse over the image.

In case it make a difference, I'm using zserver in Zope to serve the pages.
I suspect I'm missing something simple, I just can't seem to see it.

Gord

-----Original Message-----
From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Peter
Bengtsson
Sent: October 29, 2001 02:57
To: gordon.holtslander@sk.lung.ca; Zope List (E-mail)
Subject: Re: [Zope] How to do a mouse over in Zope


<a href="feedback.html" onMouseOver="document.the_image.src=<dtml-var
"images['feedback_dn.gif'].absolute_url()">;"
onMouseOut="document.the_image.src=<dtml-var
"images['feedback_up.gif'].absolute_url()">;"> <img src=<dtml-var
"images['feedback_up.gif'].absolute_url()"> name="the_image" border="0"></a>

Then you your DTML returns "http://localhost/images/feedback.gif" and not
the whole <img src=".." .... alt="0"/>

At 01:55 2001-10-29 -0600, Gordon Holtslander wrote:
><a href="feedback.html" onMouseOver="document.the_image.src=<dtml-var
>"images['feedback_dn.gif']">;" onMouseOut="document.the_image.src=<dtml-var
>"images['feedback_up.gif']">;"> <img src=<dtml-var
>"images['feedback_up.gif']"> name="the_image" border="0"></a>


_______________________________________________
Zope maillist  -  Zope@zope.org
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )