Page 1 of 1

LOL How to do this?

Posted: Mon Jul 11, 2005 19:23
by POLSKASH
I searched that damn Reference for the CEGUI::EditBox class, I can't find a function to clear what's currently in the edit box LOL. I tried ReleaseInput() and clearProperties() to no avail. I see initialise() but it's virtual. Should I be using that? Where would I provide my own implementation if so?

I'm pretty much in the clear now, just getting CEGUI to do the small things I need it to do for me, and I'm done with it! I just went ahead and used Windows messages for the input like you suggested Eddie.

Re: LOL How to do this?

Posted: Tue Jul 12, 2005 01:02
by lindquist

Code: Select all

Editbox* eb = ...
eb->setText("");


I think that should do it for you...