G GuyBooth Active Member Licensed User Longtime User May 9, 2020 #1 This code posted by Klaus a while ago allows me to make a pane transparent to mouse clicks, so a click will be passed to an object below it: B4X: Private jo = MyNode As JavaObject jo.RunMethod("setMouseTransparent", Array As Object(True)) Is there a way to register the mouse action and also pass it to the object below?
This code posted by Klaus a while ago allows me to make a pane transparent to mouse clicks, so a click will be passed to an object below it: B4X: Private jo = MyNode As JavaObject jo.RunMethod("setMouseTransparent", Array As Object(True)) Is there a way to register the mouse action and also pass it to the object below?
Erel B4X founder Staff member Licensed User Longtime User May 10, 2020 #2 You can add a filter handler with jReflection. It will allow you to intercept all events. Upvote 0