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

3 frames around my image

Engaged ,
Nov 21, 2017 Nov 21, 2017

Hello,

Since updating InDesign, I now get 3 frame boxes around an image whereas I use to get only 2 – It’s really annoying and I can’t turn it off.

Anyone know what’s causing this and how to turn it off, please?  I want to go back 2 frames.

Many thanks.

1.8K
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

Community Expert , Nov 21, 2017 Nov 21, 2017

This should do the same:

var sel=app.activeDocument.selection[0];

var itms = sel.allPageItems;

if (itms.length ==2) {

    app.select(itms[0]);

    app.copy();

    sel.remove();

    app.pasteInPlace();

}else{

    alert("Please Select The Outside Frame");

}

Translate
Engaged ,
Nov 21, 2017 Nov 21, 2017

I wish it was to as (and i've never said this before) unfortunately i'm Windows

Laubender

Thanks for posting that, big help

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
Community Expert ,
Nov 21, 2017 Nov 21, 2017

Beautiful. It works instantly! I was wondering if line 4 is spelled itms or items?

Thanks for building this for the OP, Rob!

Mike Witherell
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
Community Expert ,
Nov 21, 2017 Nov 21, 2017

https://forums.adobe.com/people/Michael+Witherell  wrote

… I was wondering if line 4 is spelled itms or items?…

Hi Michael,

it's itms, because itms is a variable name Rob set in line 2.

Regards,
Uwe

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
Community Expert ,
Nov 21, 2017 Nov 21, 2017

Thanks for that, Uwe. Just goes to show my depth is enough to get me in trouble!

Mike Witherell
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