User manual - Web_Browser_Prog_Guide

NAURTECH WEB BROWSER SMART CLIENTS FOR WINDOWS CE .NET / POCKET PC
Web Browser Programming Guide Page 39
Syntax
http-equiv="TimerNavigate"
content="javascript:OnTimer('%s');"
<!- or ->
content="/timer.htm?time=%s"
Where the ā€œ%sā€ is replaced with the current time in the form hh:mm:ss.
Comments
The effect of TimerInterval and TimerNavigate tags can be accomplished using
the Javascript setInterval() and setTimeout() methods on the window
DOM object. Using the Javascript methods is recommended.
Example
<html>
<head>
<meta http-equiv="TimerInterval" content="1000">
<meta http-equiv="TimerNavigate"
content="javascript:OnTimer('%s');">
</head>
<body>
Current time: <div id="timerDiv">junk</div>
<script language=javascript>
function onTimer(time)
{
timerDiv.innerHTML = time;
}
</script>
...
</body>
</html>
3.26 ZEBRALABEL_COMPLETE OR PLSERIESLABEL_COMPLETE
The ZebraLabel_Complete tag is used to report the status of a print from the
ZebraLabel_Print tag. The alternative identifier PLSeriesLabel_Complete will
also be recognized.
Syntax
http-equiv="ZebraLabel_Complete"
content="javascript:PrintStatus('%ld');"
<!- or ->
content="http://10.1.1.8/print.htm?status=%ld"