MichaelCharlesShow
IS-IT--Management
I've replaced the default screensaver with a custom 5360 screensaver based on the samples in the html toolkit. It's barebones and just displays two images, one an animated gif. The screensaver works great, with the exception that touching it doesn't dismiss it anymore. The default one dismisses on touch, but not this one.
I'm guessing there is an on_touch event I need to write a handler for in the html? Anyone know what I need to do to respond to a touch event and dismiss the screensaver?
I'm guessing there is an on_touch event I need to write a handler for in the html? Anyone know what I need to do to respond to a touch event and dismiss the screensaver?
HTML:
<html>
<head>
<style type="text/css">
.imageposition_spin
{
position: absolute;
top: 50px;
left:0px;
};
.imageposition_base
{
position: absolute;
top: 600px;
left:0px;
};
</style>
<script>
RequestFullScreenBrowser();
</script>
</head>
<body>
<div class="imageposition_spin">
<img src="f_fwd_1.gif">
</div>
<div class="imageposition_base">
<img src="rgb_480x800.gif">
</div>
</body>
</html>