Eden91
(Eden91)
1
Hi
I want to unable acces by right click when players use the webrowser widget in my game?
how can I do this?
Thanks.
Eretzion
(Eretzion)
2
This worked for me i chrome:
It seems the right click menu is controlled by the web browser, so you can run a javascript too disable the context menu like so:
window.oncontextmenu = function(event) {
event.preventDefault();
event.stopPropagation();
return false;
};
1 Like