May 19, 2001 - Flipping a Frame's Source
May 19, 2001 Flipping a Frame's Source Tips: May 2001
Yehuda Shiran, Ph.D.
|
One of these "tiny" details is embedding the sound track on each and every page you want to sonify. This may become a nightmare for maintenance, once you want to change the embedded track on all pages. Another way to embed a sound track is to use an invisible frame for the sound, and change only the visible frame. In this way, we have a site that includes two frames: one fixed frame with the embedded SWFs, and one frame that hosts the regular site's Web page. When we jump from this frame to another Web page, the new page positions itself in the same frame under the same frameset.
Let's see these frames in a demo. Click here to see a page with two frames, one invisible and one visible. Click the Next
link and flip the page to 010519d.html
. Notice that the browser's URL is still 010519a.html
. The visible frame's content has changed, but the frame is still under its original frameset. This is the code for the FRAMESET
page:
<HTML>
<HEAD>
<TITLE>Flash sound with Frames</TITLE>
</HEAD>
<FRAMESET FRAMESPACING="0" BORDER="false" ROWS="1,*" FRAMEBORDER="0">
<FRAME NAME="swf" SCROLLING="no" NORESIZE TARGET="main" SRC="010519b.html"
MARGINWIDTH="1" MARGINHEIGHT="1">
<FRAME NAME="main" src="010519c.html" scrolling="auto">
<NOFRAMES>
<BODY>
<P>This page uses frames, but your browser doesn't support them.</P>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>
This is the code for the invisible frame:
<HTML>
<HEAD>
<TITLE>INVISIBLE FRAME</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
This is the code for the visible frame:
<HTML>
<HEAD>
<TITLE>VISIBLE FRAME</TITLE>
</HEAD>
<BODY>
<P>Hello World. This is 010519c.html.</P>
<A HREF="010519d.html">Next</a>
</BODY>
</HTML>