The API to use is
| value of javascript | expression |
Where 'expression' is any snippet of Javascript, which can then be
used to manipulate the DOM model which is being hidden by the
FCKEditor
Say you know the ID of the HTML element you want to manipulate. I am
assuming that you are trying to input text into the FCKEditor on your
page.
| value of javascript | ' document.getElementByID("<Id of
element>").innerHTML="some text to add" ' |
Replace <id of element> with the ID of the element you want to insert
text into
Use Firebug to discover the root HTML element that FCKEditor is
attached to and then navigate from there down the DOM tree
Keith