Scroller Genie Support Product Page
This topic is locked
This topic was archived
firing events within a scroller genie content area
Asked 06 Jun 2004 09:14:40
1
has this question
06 Jun 2004 09:14:40 Mark Chipman posted:
I've been doing some testing with Scroller Genie and it appears that events aren't being fired for anything located withing a content area. For example, I have placed some small thumbnail images whereas I have onMouseOver and onMouseOut events prepared for them that don't appear to work. Here is a sample of my table code...
<table width="850" height="69" border="0" cellspacing="0" cellpadding="0" >
<tr valign="middle" height="69">
<td width="85" align="center" nowrap><img name="0" id="0" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 1" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="1" id="1" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 2" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="2" id="2" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 3" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="3" id="3" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 4" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="4" id="4" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 5" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="5" id="5" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 6" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="6" id="6" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 7" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="7" id="7" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 8" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="8" id="8" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 9" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
<td width="85" align="center" nowrap><img name="9" id="9" border="0" src="testthumb2.gif" width="70" height="50" alt="pic 10" onMouseOver="processpicstatus(this.name);" onMouseOut="resumesliding(); processpicstatus('-1'); return true;"></td>
</tr>
</table>
Any ideas on that?
Replies
Replied 06 Jun 2004 14:00:54
06 Jun 2004 14:00:54 Marja Ribbers-de Vroed replied:
onMouseOver and onMouseOut events on IMG tags are not supported by all browsers.
Please try wrapping those images in null links <pre id=code><font face=courier size=2 id=code>(eg. <a href="javascript:;"><img...></a><img src=../images/dmxzone/forum/icon_smile_wink.gif border=0 align=middle></font id=code></pre id=code> and use the onMouseOver and onMouseOut events for those A tags.
--
Marja Ribbers-de Vroed
www.flevooware.nl
www.flevooware.nl/dreamweaver/
Please try wrapping those images in null links <pre id=code><font face=courier size=2 id=code>(eg. <a href="javascript:;"><img...></a><img src=../images/dmxzone/forum/icon_smile_wink.gif border=0 align=middle></font id=code></pre id=code> and use the onMouseOver and onMouseOut events for those A tags.
--
Marja Ribbers-de Vroed
www.flevooware.nl
www.flevooware.nl/dreamweaver/
