I have function that will execute a 3% zoom on a picture (java applet) when the OnClick is pressed.
Is there a way to get the function to repeat continuously if the mouse button remains pressed?
<SCRIPT LANGUAGE="JavaScript">
function ZoomInApplet()
{
document.ptviewer.ZoomIn()
}
</script>
<a href="#" OnClick="javascript:ZoomInApplet()">Zoom In</a>
Is there a way to get the function to repeat continuously if the mouse button remains pressed?
<SCRIPT LANGUAGE="JavaScript">
function ZoomInApplet()
{
document.ptviewer.ZoomIn()
}
</script>
<a href="#" OnClick="javascript:ZoomInApplet()">Zoom In</a>