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

Ebenen strukturieren per Shortcut

New Here ,
May 12, 2017 May 12, 2017

Copy link to clipboard

Copied

Hallo Zusammen,

ich habe das Problem das ich verschiedene Elemente einer Ebene auf mehrere Ebenen verteilen muss.

Hierbei handelt es sich um 130 Seiten.

Normalerweise geht das so:

Auswahl + mit Maus auf entsprechendes Ebenenfeld-Kästchen ziehen.

Das Problem: Dieses Ebenen-Kästchen ist so klein das ich es zu 50 - 70 % verfehle und es 2-3 mal wiederholen muss.

Frage: Gibt es eine bessere Möglichkeit. Z. B. ein Shortcut um auf nächsthöhere Ebene zu wechseln?

Bildschirmfoto 2017-05-12 um 10.53.25.png

Vielen Dank für eure Antwort!

MfG

catlin

Views

313

Translate

Translate

Report

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
Guide ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

In short: Multiple page items have to be moved one layer up.

The proxy icon of the layer panel is hard to hit.

Approach: select your item(s), then run this script.

function main()

{

  if( app.documents.length==0 ) {

    alert("Kein Dokument!");

    return;

  }

  var doc = app.activeDocument;

  var sel = app.selection;

  if( sel.length==0 ) {

    alert("Nichts ausgewählt!");

    return;

  }

  var sel0 = sel[0];

  if( !sel0.hasOwnProperty("itemLayer") ) {

    alert("Keine Ebene gefunden!");

    return;

  }

  var oldLayer = sel0.itemLayer;

  if( oldLayer.index==0 ) {

    alert("Oberste Ebene erreicht!");

    return;

  }

  var newLayer = doc.layers.item(oldLayer.index-1);

  while( sel.length ) {

    var it = sel.pop();

    it.itemLayer = newLayer;

  }

}

main();

"Done.";

Sind das nur bestimmte "verschiedene" Elemente, oder alle Elemente dieser Ebene? Dann geht das noch etwas schneller ...

Votes

Translate

Translate

Report

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
Guide ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

Just noticed the age of the original request.

Due to the unreliable email subscription delivery, it was still close to top to me.

Sorry, maybe someone else will benefit.

Votes

Translate

Translate

Report

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
Adobe Employee ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

Hi,

As a workaround, can you make the layer slightly small so that the scroll bar appears?

Or just add one extra temporary layer so that it increases the current layers shown in layers panel by 1 and the scroll bar appears.

You can then check if your way of changing layer works..

I think this should somewhat ease your work.

-Aman

Votes

Translate

Translate

Report

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
Guide ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

Translating this interesting suggestion:

Um das "Proxy Icon" Viereck etwas vom Rand weg zu bewegen, könnte man die Palette schmaler machen sodass noch der Scrollbalken dazwischen kommt.

My addition:

Having the proxy icons next to scroll bars will at least add some thrills when the attempt to start the drag hits too far right 😉

Dann wird es zumindest spannender wenn man rechts neben das Viereck trifft ...

Just noticed that the immediate area of the proxy won't accept a drop. For comparison, it worked in CS6.

Votes

Translate

Translate

Report

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
Adobe Employee ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

LATEST

Hi,

This is a known issue with InDesign CC 2017.1

You can report it here...Feature Request/Bug Report Form

You can try the workaround either suggested by me or refer to the below similar threads.

Having a hard time drag and drop elements between layers 2017.1

inDesign - I cannot move items to other layers

Meine Lösung: Füge eine weitere temporäre Ebene hinzu, damit die Bildlaufleiste angezeigt wird. Dies fügt eine Ebene hinzu (und löscht diese Schicht später), so dass die Bildlaufleiste im Ebenenbereich angezeigt wird. Das Ändern der Ebenen der Elemente kann dann wie die Art und Weise, wie Sie in CS6 verwendet werden

-Aman

Votes

Translate

Translate

Report

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