Programming your own pages (channels) is possible. The player uses
standard HTML4.01, JavaScript, ECMAscripts, DOM, CSS, etc..
There are examples available on the website.
You will need a home PC, a HTML editor and a basic knowledge of
web programming.
Any standard HTML editor is capable of making examples for the
player. The screen graphic area is 640x520 pixels.
To place the TV image on screen, use TV: as the source.
e.g. <img src=“tv:” width=“188”>
the background can be set to tv picture...in the BODY have
background=“tv:”
WEB PROGRAMMING
- 57 -
// EXAMPLE TO MOVE SMALL TV PICTURE USING JOYSTICK LEFT & RIGHT
<html>
<head>
<title>MOVE PICTURE LEFT/RIGHT PROGRAM</title>
</head>
<script language="JavaScript">
var x=240;
function keyListen()
{
if (x<0) x=0;
if (x>440) x=440;
document.getElementById("pippos").style.left=x;
var evt = window.event;
switch (evt.nativeKey)
{
case evt.KEY_LEFT:
x=x-10;
break;
case evt.KEY_RIGHT:
x=x+10;
break;
default:
break;
}
}
</script>
<body bgcolor=#000000 onKeyDown="keyListen()">
<div id="pippos" style="position:absolute; top:170px; left:240px;">
<img src="tv:" width=188>
</div>
</body></html>
As shown above, the left and right keys are programmed. Actually,
any of the keys on the remote controller (or keyboard) may be
reprogrammed. For example use evt.KEY_DOWN, evt.KEY_UP,
evt.IRENTER, evt.ENTER, etc....
To try your examples, copy them to a USB memory stick, and insert.
Then select the file.
Some colours when placed together may not display properly on a TV
set. This is a limitation on a TV. Therefore you may need to
experiment with various colour schemes.