Hi I;m creating an app that after few restructurings has UI independent of the content in it and for now the best solution is to have a transparent BrowserView with UI on top of other BrowserView that has all the other content. As some of you may know, the top BrowserView is the one getting mouse input, but i need to redirect it all to the bottom one, but i cant be changing the content of the bottom BrowserView so it would handle some custom event, is there a way how to easily redirect all the mouse input events? or can anyone help me with this a bit please?
#BrowserViews on top of each other
3 messages · Page 1 of 1 (latest)
Hello. I have the same issue on my side.
I'm solving the problem by resizing my "bottom browserView" so that it doesn't overlap the actions of the "top browserView" and putting "my bottom" at the top.
It's not a good solution but it's all I could find for the moment
I was also thinking about using python for handling this, but it might be overcomplicated