Hi,
I am trying to learn about function onMouseMove I found in EFS manual
but the example provided seems not to work on my computer.
Please, could you check and confirm if this example works correctly on your computer?
Thanks.
Massimo
function preMain() {
setPriceStudy(true);
setStudyTitle(" onMouseMove Basics");
setShowCursorLabel(false);
setAcceptMouseMove(true);
}
function main() {
return;
}
function onMouseMove(nIndex, yValue, xPixel, yPixel) {
debugClear();
debugPrintln("index: " + nIndex + " price: " + yValue.toFixed(2) +
" pixels X: " + xPixel + " pixels Y: " + yPixel);
return;
}
I am trying to learn about function onMouseMove I found in EFS manual
but the example provided seems not to work on my computer.
Please, could you check and confirm if this example works correctly on your computer?
Thanks.
Massimo
function preMain() {
setPriceStudy(true);
setStudyTitle(" onMouseMove Basics");
setShowCursorLabel(false);
setAcceptMouseMove(true);
}
function main() {
return;
}
function onMouseMove(nIndex, yValue, xPixel, yPixel) {
debugClear();
debugPrintln("index: " + nIndex + " price: " + yValue.toFixed(2) +
" pixels X: " + xPixel + " pixels Y: " + yPixel);
return;
}
Comment