PDA

View Full Version : problem with mouseovers and hyperlinks used together


sjhooverus
04-27-2005, 11:42 AM
I notice that when I use events onmouseover and onmouseout on a text field marked as a hyperlink (<a> tag), the hyperlink does not work. When the events are not present for the text field, the link works fine. Can anyone help?

Thank you in advance.

hqm
04-27-2005, 12:19 PM
I'll try and see if anyone has a workaround.

sjhooverus
04-27-2005, 12:21 PM
Thank you! Any input appreciated

hqm
04-29-2005, 01:43 PM
This places a clickable view behind a text view. The hyperlink is clickable now.


<canvas width="1400" height="600" debug="true">
<debug width="400" height="300" fontsize="12" x="400"/>
<view width="200" height="20"
onclick="Debug.write('click')" >
<text width="200" height="20" id="foo">This is some <u><a href="http://www.google.com">hypertext</a></u></text>
</view>

</canvas>

sjhooverus
05-02-2005, 05:45 AM
Thank you so much...this worked!