Using TVML on WebTV
The tv signal from the receiver on your plus can be used as a foreground image or as a background image on a web page.
TVML - TeleVision Mark-Up Language refers to the unique attribues used in HTML to control the tv functions.
- tv:
- <a href="tv:">TV</a>
- Activates the tv mode from a HTML link.
- Use the "view" key on your keyboard or remote to return to the web.
- Changing channels
- <a href="tv:8">ch.8</a>
- <a href="tv:cnn">CNN</a>
- Not recommended. The set channel may not be present on the users system.
- view
- Attribute used in a link to call "tv" or "web".
- <a href="wtv_tvml.html" view="tv">TV</a>
- <a href="wtv_tvml.html" view="web">Web</a>
- Note: You can specify the text shown on the return link by using title.
- <a href="wtv_tvml.html" view="web" title="Back to my page">Web</a>
- Using tv: as an Image
- <img src="tv:" width="400" height="300">
- <a href="xxxx.html" view="tv">ON</a>
- <a href="xxxx.html" view="web">OFF</a>
<img src="tv:" border="2" width="200" height="150" alt="got webtv?">
To enter the tv mode you must link to the tv: coded page with the "view" attribute set to "tv".
example:
<a href="http://tv_page.html" view="tv">tv</a>
To return to the web from the tv mode you can use a link with view set to "web", or use the view key on the keyboard or remote.
example of a link:
<a href="tv_page.html" view="web">web</a>
- Using tv: as a Background :
- <body background="tv:">
- <a href="xxxx.html" view="tv">tvml</a>
- Use "view" button to return to the web.
Using tv: as the body background url enables the tv mode. The file is linked to using the view attribute set to "tv". The "view" key on your keyboard or remote returns you to the web as does using view="web" in a link.
HTML or script can be included in the file to add content. |