home *** CD-ROM | disk | FTP | other *** search
- #newformat
- # © Geoff Youngs, 1999
- _title:'TV Screen' Engine
- _description:TV Screen display engine
- _Author: Geoff Youngs
- _Source: http://www.dyoungs.clara.net/jvscript/
- _Explanation: This script is based on the rollover images one that is included in HTML³.
-
- _insert-in:inhead
- <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"><!--
- function tvshow(imgName, varName)
- {if (document.images)
- document[imgName].src = eval(varName + 'on.src')}
- function tvfuzz(imgName, varName)
- {if (document.images)
- document[imgName].src = eval(varName + 'off.src')}
- // -->
- </SCRIPT>
- _end-insert:
-
- _insert-in:inbody
- <!-- You will need the 'Xtras.tv' directory for this -->
- <!-- This is the tv screen, xtra screens should be 100x75 pixels-->
- <TABLE WIDTH=120 CELLPADDING=0 CELLSPACING=0>
- <TR><TD WIDTH=120 COLSPAN=3><IMG SRC="tv/top.gif" ALT="Top" WIDTH="120" HEIGHT="10" BORDER="0" HSPACE="0" VSPACE="0"></TD></TR>
- <TR><TD WIDTH=10><IMG SRC="tv/side.gif" ALT="Side" WIDTH="10" HEIGHT="75" BORDER="0" HSPACE="0" VSPACE="0"></TD>
- <TD WIDTH=100>
- <IMG SRC="tv/screens/fuzz.gif" ALT="Fuzz" WIDTH="100" HEIGHT="75" BORDER="0" HSPACE="0" VSPACE="0" NAME="tvscreen"><BR CLEAR="all"></TD>
- <TD WIDTH=10><IMG SRC="tv/side.gif" ALT="Side" WIDTH="10" HEIGHT="75" BORDER="0" HSPACE="0" VSPACE="0"></TD></TR>
- <TR><TD WIDTH=120 COLSPAN=3><IMG SRC="tv/bottom.gif" ALT="Bottom" WIDTH="120" HEIGHT="25" BORDER="0" HSPACE="0" VSPACE="0"></TD></TR>
- </TABLE>
- <!-- Bottom of Screen -->
- _end-insert: