Disable right click Webbrowser

Hi

I want to unable acces by right click when players use the webrowser widget in my game?

how can I do this?

Thanks.

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