Is there a way how to use isOver parameter for pop-up help? I have some troubles with getting rid of the help label because an isOver FALSE doesn't seem to be generated at all after I move the mouse away from the object. Am I wrong?
Yes you are.
That's ok with isOver event:
#VRML V2.0 utf8
DEF main_TS TouchSensor {}
Shape {
geometry Cone {}
}
DEF main_SCR Script {
eventIn SFBool go
url "javascript:
function go(val){
trace(val);
}
"
}
ROUTE main_TS.isOver TO main_SCR.go