Page 1 of 1

Getting rid of mousepointer (Alpha)

Posted: Sun Jun 14, 2020 5:13 pm
by lalalandsynth
I used to get rid of the mouse pointer with a ruby window "def mouseCursor 2 end"
This stopped working in the alpha , did anything change and I missed it or is this a bug ?

Re: Getting rid of mousepointer (Alpha)

Posted: Mon Jun 15, 2020 3:17 pm
by lalalandsynth
Using this works .
def isInMousePoint x, y
true
end

def mouseCursor x,y
2

end

Re: Getting rid of mousepointer (Alpha)

Posted: Tue Jun 16, 2020 8:15 pm
by wlangfor@uoguelph.ca
Thanks Lala, useful

Re: Getting rid of mousepointer (Alpha)

Posted: Wed Jun 17, 2020 3:59 pm
by trogluddite
When isInMousePoint returns false or isn't defined, none of the other mouse methods should ever be called - so what you described is the correct behaviour AFAIK (in an exported plugin, at least). AFAIK, that's how it's always worked - I've made use of this behaviour in quite a few v3.0.x schematics.