Skip to main content
Adobe-InDesign_CS4
Inspiring
July 3, 2009
Answered

CS4: [JS]: How to check the Frame is Threaded or not?-Reg.

  • July 3, 2009
  • 1 reply
  • 567 views

Dear All

  I'm having one doubt regarding for Threaded Frames.

For example, I used 10 pages threaded and 2 pages are not threaded at the time of Processing...

So How to check All Frames are Threaded or not?.

Please any one can give me a piece of Idea, then I will be appreciate....

Thanks & Regards

T.R.Harihara SudhaN

This topic has been closed for replies.
Correct answer Harbs.

textFrame.nextTextFrame and textFrame.previousTextFrame tells you how

a text frame is threaded...

Harbs

1 reply

Harbs.
Harbs.Correct answer
Legend
July 3, 2009

textFrame.nextTextFrame and textFrame.previousTextFrame tells you how

a text frame is threaded...

Harbs

Adobe-InDesign_CS4
Inspiring
July 3, 2009

Dear Harbs

Many Thanks for the Helpful and Correct answer.!

Thanks once again

I used the below code....

if((myTextFrame.previousTextFrame) || (myTextFrame.nextTextFrame))
{
  $.writeln("Threaded");
  }
else
  {
   $.writeln("Not Threaded");
   $.writeln(myTextFrame.parent.name);
   }

Its working fine........

Thanks  & Regards

T.R.Harihara SudhaN