We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Is there any special trick that is required to make SDrop work in a fullscreen sketch?
My current code works perfectly as long as I start the sketch with size(x,y). When I start it with fullScreen() the drop events to not fire any more.
somwhere I read the following tipp:
Instead of using
drop = new SDrop(this);
one should use
drop = new SDrop((Component)this.surface.getNative(), this);
But this resolves in an error about the constructor being undefined.
Does anyone have a solution for this?