ok I know theres the code shown below for edge locking and image but is there a way to edge lock an html file ?
Code:
<script>
if (layerSupport()) {
c3 = new config();
c3.uid = 3
c3.prefix = "y_lock3";
c3.image = "";
c3.imageWidth = 125;
c3.imageHeight = 96;
c3.startOnScreen = false;
c3.xAnchor = 1;
c3.yAnchor = 2;
c3.xOffset = 0;
c3.yOffset = 0;
writeImages(c3);
setTimeout('updateLock(c3)', c3.updateInterval);
}
</script>