How-to use systeminfo API in WRT widgets
m |
|||
| Line 1: | Line 1: | ||
| − | [[Category:How To]][[Category: | + | [[Category:How To]][[Category:Code Examples]][[Category:Web Run-Time (WRT)]][[Category:Code Examples]] |
Compatibility: '''''Web Run-Time in S60 3rd Edition, Feature Pack 2''''' | Compatibility: '''''Web Run-Time in S60 3rd Edition, Feature Pack 2''''' | ||
Revision as of 15:58, 4 March 2008
Compatibility: Web Run-Time in S60 3rd Edition, Feature Pack 2
HTML
To enable system info API in widgets it needs to be embedded in the document since it is implemented as a netscape scriptable plug-in.
<embed type="application/x-systeminfo-widget" hidden="yes"></embed>
HTML example
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<script type="text/javascript" src="api.js" />
<body onload="testapi()">
<embed type="application/x-systeminfo-widget" hidden="yes"></embed>
</body>
</html>
JavaScript
function testapi()
var sysinfo = document.embeds[0];
sysinfo.beep(5000, 900);
}

