Skip to main content
May 28, 2009
Question

nov 28 build (milestone) - IeditManager

  • May 28, 2009
  • 1 reply
  • 661 views

interfacing the textFlow interaction manager with IeditManager does not allow follow through to deleteText but everything else?

(tf.interactionManager as IEditManager).deleteText(); //bad - interface does not seem to declare deleteText...

Is this working as intended or just a very old and known issue?

This topic has been closed for replies.

1 reply

Adobe Employee
May 28, 2009

Try using deleteNext(). It deletes the next character is you have an insertion point TextRange (start == end), or deletes the text in the TextRange if there's a range specified.

June 1, 2009

thanks for your help Robin - I got there