JS Select Text Frame
I am trying to select a text frame, but I don’t see a TextFrame property or method that will select a text frame. Please help me solve the problem.
var curDoc = app.activeDocument;
curDoc.pages[0].textFrames[0];
I am trying to select a text frame, but I don’t see a TextFrame property or method that will select a text frame. Please help me solve the problem.
var curDoc = app.activeDocument;
curDoc.pages[0].textFrames[0];
Hi,
You should be able to use the select function on the Document object.
curDoc.select ( curDoc.pages[0].textFrames[0]);
Hope this helps
Malcolm
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.