function WW_processclick(e) { // Process Mouse Click |
var clickX = WW_eventx(e); // Extract Mouse Click Position |
var clickY = WW_eventy(e); |
// Position Top right of pointer at mouse click |
var width = WW_getlayerwidth(WW_pointerlayer); |
WW_layershiftto(WW_pointerlayer,clickX-width,clickY); |
WW_layershow(WW_pointerlayer); // Make pointer visible |
WW_layertotop(WW_pointerlayer); // set zindex=1000 |
WW_offpointerblock(); // remove stray mouseover messages |
window.status = 'click'; // flag action |
// true implies that you continue conventional processing i.e. |
return true; // that clicks on links are recognized |
} // End WW_processclick(e) |