1. How do you clear a MleText?
- Posted by doncole2009 Jun 28, 2009
- 1065 views
Hello All,
clearWindow(myMleText) dosen't work.
Don Cole
2. Re: How do you clear a MleText?
- Posted by ArthurCrump Jun 28, 2009
- 1105 views
This is just like the RichEdit question earlier. You need:
setText(myMleText,"")
3. Re: How do you clear a MleText?
- Posted by doncole2009 Jun 28, 2009
- 1039 views
Thank you Arthur,
Works fine.
I was thinking of setText(myMleText,repeat(' ',1000)) but I guess that's not necessary.
Don Cole
4. Re: How do you clear a MleText?
- Posted by Andy Jun 28, 2009
- 1052 views
doncole2009 said...
Thank you Arthur,
Works fine.
I was thinking of setText(myMleText,repeat(' ',1000)) but I guess that's not necessary.
Don Cole
Also, as I note, I'd like to point out, that clearWindow is for painting functions on the Window. If you had drawn a bitmap the window and you'd want to clear it, then you'd use clearWindow. Just to clear up any confusion about clearWindow.