eine übersichts seite mit 3 links auf 3 andere seiten
die jeweils schon einen zurückbutton haben
ZITAT
<html>
<head>
<title>Uebersicht</title>
<link rel="STYLESHEET" type="text/css" href="Main.css">
<script src="BasicFunctions.js" type="text/javascript"></script>
<script src="Scrolling.js" type="text/javascript"></script>
<script src="MoveFocus.js" type="text/javascript"></script>
<script>
function pageLoadFunctions()
{
checkSVP();
setCounter();
setArray();
startFocus();
}
function doSelect()
{
/* This function determines what your buttons do when they are selected
(navigate, call a function, etc.). This function will get called whenever user
clicks a focusable item, or selects it with "OK" button on remote. Make sure to
include a case below for each focusable item on the page */
var url = ""
switch(oCurFocus.id)
{
case "Seite 1": url = "Seite 1.htm"; break;
case "Seite 2": url = "Seite 2.htm"; break;
case "Seite 3": url = "Seite 3.htm"; break;
}
if (url != "") window.navigate(url);
}
</script>
</head>
<body id="body" MCFocusStart="btnMenuPg" onload="pageLoadFunctions()" onkeydown="onRemoteEvent(window.event.keyCode)">
<div class="panel" style="position: absolute; width: 102%; height: 100%; z-index: -100; left: 0px; top: 0px"><IMG src="images/background.jpg" width="102%" height="100%"></div>
<!-- Start span used as stand-in for Shared Viewport -->
<span style="position: absolute; top: 0; left: 0; height: 100%;">
<table style="position: absolute; top: 0; left: 0; height: 100%;" cellspacing="3" cellpadding="3">
<tr><td valign="bottom" height="100%">
<span id="SVP" style="width: 308; height: 216; vertical-align: bottom" MCFocusable="true"></span>
</td></tr>
</table>
</span>
<!-- End span used as stand-in for Shared Viewport -->
<span id="title" class="text1" style="position: absolute; top: 94; left: 345; width: 610;"><strong>Uebersicht</strong></span>
<!-- Item counter at lower right. Displays only if button menu is scrollable -->
<span id="itemCounterSpan" style="font: 20pt Arial; color: #f2f2f2; width: 610; Height: 42; text-align: right; display: block; position: absolute; top: 644; left: 119;">
<span id="counterNum">1</span> of <span id="counterTotal"></span>
<span id="arrowUp" class="arrowUp" onclick = "pageUpDown('up')"></span>
<span id="arrowDown" class="arrowDown" onclick = "pageUpDown('down')"></span>
</span>
<!-- End item counter at lower right -->
<!-- Start of "scrolling" span -->
<span id="scrollspan" MCScrollable="true" style="position: absolute; top: 138; left: 332; width: 400; height: 485; overflow: hidden">
<table id="listTable" border="0" cellpadding="0" cellspacing="3">
<tr><td ID="Seite 1" class="button2" MCFocusable="true">Seite 1</td></tr>
<tr><td ID="Seite 2" class="button2" MCFocusable="true">Seite 2</td></tr>
<tr><td ID="Seite 3" class="button2" MCFocusable="true">Seite 3</td></tr>
</table>
</span>
</body>
</html>
<head>
<title>Uebersicht</title>
<link rel="STYLESHEET" type="text/css" href="Main.css">
<script src="BasicFunctions.js" type="text/javascript"></script>
<script src="Scrolling.js" type="text/javascript"></script>
<script src="MoveFocus.js" type="text/javascript"></script>
<script>
function pageLoadFunctions()
{
checkSVP();
setCounter();
setArray();
startFocus();
}
function doSelect()
{
/* This function determines what your buttons do when they are selected
(navigate, call a function, etc.). This function will get called whenever user
clicks a focusable item, or selects it with "OK" button on remote. Make sure to
include a case below for each focusable item on the page */
var url = ""
switch(oCurFocus.id)
{
case "Seite 1": url = "Seite 1.htm"; break;
case "Seite 2": url = "Seite 2.htm"; break;
case "Seite 3": url = "Seite 3.htm"; break;
}
if (url != "") window.navigate(url);
}
</script>
</head>
<body id="body" MCFocusStart="btnMenuPg" onload="pageLoadFunctions()" onkeydown="onRemoteEvent(window.event.keyCode)">
<div class="panel" style="position: absolute; width: 102%; height: 100%; z-index: -100; left: 0px; top: 0px"><IMG src="images/background.jpg" width="102%" height="100%"></div>
<!-- Start span used as stand-in for Shared Viewport -->
<span style="position: absolute; top: 0; left: 0; height: 100%;">
<table style="position: absolute; top: 0; left: 0; height: 100%;" cellspacing="3" cellpadding="3">
<tr><td valign="bottom" height="100%">
<span id="SVP" style="width: 308; height: 216; vertical-align: bottom" MCFocusable="true"></span>
</td></tr>
</table>
</span>
<!-- End span used as stand-in for Shared Viewport -->
<span id="title" class="text1" style="position: absolute; top: 94; left: 345; width: 610;"><strong>Uebersicht</strong></span>
<!-- Item counter at lower right. Displays only if button menu is scrollable -->
<span id="itemCounterSpan" style="font: 20pt Arial; color: #f2f2f2; width: 610; Height: 42; text-align: right; display: block; position: absolute; top: 644; left: 119;">
<span id="counterNum">1</span> of <span id="counterTotal"></span>
<span id="arrowUp" class="arrowUp" onclick = "pageUpDown('up')"></span>
<span id="arrowDown" class="arrowDown" onclick = "pageUpDown('down')"></span>
</span>
<!-- End item counter at lower right -->
<!-- Start of "scrolling" span -->
<span id="scrollspan" MCScrollable="true" style="position: absolute; top: 138; left: 332; width: 400; height: 485; overflow: hidden">
<table id="listTable" border="0" cellpadding="0" cellspacing="3">
<tr><td ID="Seite 1" class="button2" MCFocusable="true">Seite 1</td></tr>
<tr><td ID="Seite 2" class="button2" MCFocusable="true">Seite 2</td></tr>
<tr><td ID="Seite 3" class="button2" MCFocusable="true">Seite 3</td></tr>
</table>
</span>
</body>
</html>
alles was blau ist für den seiten titel
alles was rot ist für die hyperlinks
alles was lila ist für backgrund also hintergrund bild
so mehr hilfe gebe ich nicht