Hi, everyone.

I want to simulate the entering text in a multiline textbox like a chat. The problem i have is when i add text to the textbox,
if the visible are get's full with text, the next message doesn't
apper.

I try to do this:


messageTextbox.setFocus
sendKeys "^{END}" '** send a ctrl + end
otherText.setFocus()


But the " otherText.setFocus() " causes the sendkeys fail.
If i remove the " otherText.setFocus() ", works.

How i can do to make the entering text at the final of the text box
visible area, when its get full, apper ??


Thanks !!