Stop Mouse Scroll/Resize in HTA

email me

This will prevent people from changing the size of a HTA by using the mouse scroll. Just add somewhere between the HEAD anchors.

<script type=”text/javascript”>
function stop()
{
return false;
}
document.onmousewheel=stop;
</script>