Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

edge lock html file?

Status
Not open for further replies.

qpid

Technical User
Jan 15, 2008
1
US
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>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top