if you want to disable a textbox, you can use
textbox.enable = false;
and true to reanable it ofc. If you don't like this solution, you can try to overwrite the GotFocus method to only do "something" if you want it.
if you want to disable a textbox, you can use
textbox.enable = false;
and true to reanable it ofc. If you don't like this solution, you can try to overwrite the GotFocus method to only do "something" if you want it.