Also ich hab einen Button der als Link gilt.
Der Button wechselt das Bild sobalt man Mouseover ist.
Nun hab ich das Problem das ich gerne mit diesem Button 2 Frames gleichzeitig ansprechen möchte, darunter auch der frame in dem der button ist ...
Problem ist das er mir die aktion mit einem 2. Link nicht durchführen will!!! Kann mir jemand helfen???
a href="arbeiten.htm">img border="0" src="buttons_usw/Galerie_w.jpg" id="img3" onmouseout="FP_swapImgRestore()" onmouseover="FP_swapImg(1,1,/*id*/\'img3\',/*url*/\'buttons_usw/Galerie_r.jpg\')" onClick="parent.linkframe.location.href=\'links_dark.htm\';" style="position: absolute; top: 2; left: 27; width: 181px; height: 86px; z-index: 3">
PS. ich arbeite in FrontPage 2003, und ich hab 2 "
Homepage selbermachen 7.851 Themen, 35.615 Beiträge
Ok, hier ist meine testversion (wild zusammenkopiert und modifiziert, die bilder sind frei wählbar):
frameset.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD><TITLE>TITEL</TITLE></HEAD>
<FRAMESET ROWS="300,*,100" COLS="100%" marginwidth=0 marginheight=0 BORDERWIDTH=0 border=0 frameborder=0 framespacing=0>
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 name="frame_top" noresize=1 scrolling=no src="top.html">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 name="frame_mid" noresize=1 scrolling=NO src="center.html">
<FRAME MARGINWIDTH=0 MARGINHEIGHT=0 name="frame_bot" noresize=1 scrolling=no src="bottom.html">
</FRAMESET>
<BODY bgcolor="White" text="black">
<CENTER><B>Für diesen Bereich benötigen Sie einen Browser, der Frames unterstützt.</B></CENTER>
</BODY>
</HTML>
center.html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>302 Found</TITLE>
</HEAD><BODY>
<H1>CENTER</H1>
centercentercentercentercentercentercentercenter<P>
</BODY></HTML>
top.html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>302 Found</TITLE>
</HEAD><BODY>
<H1>TOP</H1>
toptoptoptoptoptoptoptoptoptoptop<P>
<a href="#"><img border="0" src="bild.gif" id="img3" onClick="parent.frame_bot.location.href='bottom2.html';parent.frame_top.location.href='top2.html';">
</BODY></HTML>
top2.html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>302 Found</TITLE>
</HEAD><BODY>
<H1>TOP2</H1>
top2top2top2top2top2top2top2top2<P>
<a href="#"><img border="0" src="bild2.gif" id="img3" onClick="parent.frame_bot.location.href='bottom.html';parent.frame_top.location.href='top.html';">
</BODY></HTML>
bottom.html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>302 Found</TITLE>
</HEAD><BODY>
<H1>BOTTOM</H1>
bottombottombottombottombottombottombottombottom<P>
</BODY></HTML>
bottom2.html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>302 Found</TITLE>
</HEAD><BODY>
<H1>BOTTOM2</H1>
bottom2bottom2bottom2bottom2bottom2bottom2bottom2<P>
</BODY></HTML>
mr.escape