Page 1 of 1

multiline editbox enabled

Posted: Mon Apr 24, 2006 22:49
by nickak2003
Is there a simple way to disable a multiline editbox from accepting input but allowing the scrollbar to move? For instance, a chat-history box, should not accept direct typing, but should be scrollable.

Posted: Tue Apr 25, 2006 12:21
by Rackle
You may have tried to disable the entire multi line edit box when you should have instead set it to read only: MultiLineEditbox::setReadOnly(true);

Posted: Fri May 25, 2007 15:50
by nebukadnezzar
if i use MultiLineEditbox::setReadOnly(true);

the MultiLineEditbox can still be activated...
is there a way to suppress that the MLEB can get the focus.

(I've got a console with the MLEB as output and an editbox as input,
i wan't the MLEB to be scrollable, but not to have the focus)