Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Text Frame ignore Text wrap

New Here ,
Apr 22, 2009 Apr 22, 2009

I'm creating text frames with a script, but i want to set them to ignore text wraps, as you can with the gui text frame options. I can't figure it out. Can someone help me please?

TOPICS
Scripting
1.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Valorous Hero , Apr 22, 2009 Apr 22, 2009

myTextFrame.textFramePreferences.ignoreWrap = true;

Translate
New Here ,
Apr 22, 2009 Apr 22, 2009

figured it out

    myTextFrame.textFramePreferences.ignoreWrap = true;

thanks

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Apr 22, 2009 Apr 22, 2009

myTextFrame.textFramePreferences.ignoreWrap = true;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Apr 22, 2009 Apr 22, 2009

You failed to mension what version of Indd and language you are using.

For Indesign CS3 and JavaScript you can do:

var tf = app.activeDocument.textFrames[0];

tf.textFramePreferences.ignoreWrap = true;

Hope this helps

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 22, 2009 Apr 22, 2009

Thank you both. I should have mentioned CS4 and JS. Thanks again

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Valorous Hero ,
Apr 22, 2009 Apr 22, 2009
LATEST

This new forum is so slow! I didn't see that you had already solved this.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines