tags:

views:

73

answers:

3

This is link to TinyMCE redactor: TinyMCE

I have a task: To type text in the textfield of TinyMCE. But this in not a textfield, this is a Body that doesn't have a method "TypeText();"

Please show me the code example, that can type the text in the TinyMCE Body

A: 

You could set the Text property of the Body element.

Daaron
How can I do that?
Sergey
A: 

Like Daaron said just set the Body Text, like:

Body.Text = "My text" + Body.Text;
Shady M. Najib