Reply To: Shortcut Help

#78351
Peter Kahrel
Member

Here’s a script that, if the current selection is a text frame, places the cursor at the first insertion point:

if (app.documents.length > 0 && app.selection.length > 0 && app.selection[0] instanceof TextFrame) {
   app.selection[0].insertionPoints[0].select();
}

You can assign it to a shortcut key.

Peter

This article was last modified on September 25, 2015

Comments (0)

Loading comments...