Copy link to clipboard
Copied
That is not layer but the object inside the layer, the layer is the one that expands to reveal these items(name with the inverted arrow head). Now the <> means that the object does not have a name set, single click on it and you can give it a name that you want.
-Manan
Copy link to clipboard
Copied
That is not layer but the object inside the layer, the layer is the one that expands to reveal these items(name with the inverted arrow head). Now the <> means that the object does not have a name set, single click on it and you can give it a name that you want.
-Manan
Copy link to clipboard
Copied
I don't think the angle brackets have any significance, they just encompass the Layer name (you can rename the layer and move it up and down the list). You can also Lock the layer. The side menu gives you additional options
Copy link to clipboard
Copied
Derek the significance is that it identifies the pagetiems that have not been given a name explicitly by the user. So it serves as a quick differentitor for pageitems with default names. I use the brackets for this purpose and it is quite handy
-Manan
Copy link to clipboard
Copied
My observation may not hold fully. What @Laubender described in his post summarises it perfectly on all the use cases.
-Manan
Copy link to clipboard
Copied
Copy link to clipboard
Copied
If you click on the eye icon space you can see (view) the contents of that layer.
Copy link to clipboard
Copied
Copy link to clipboard
Copied
It seems to be a table with different cell colors.
Copy link to clipboard
Copied
So google how to edit that, then? I have never worked with a table like that in ID. Thanks!
Copy link to clipboard
Copied
Copy link to clipboard
Copied
If I turn off the "eye" or view of the layer named < text frame >, the entire calendar graphic goes away. I am just looking to move the colored boxed around in this graphic to update for a new calendar/year. I don't know if that makes sense. I am just used to, if you are in PS and create multiple boxes, you can expand the layer, and see all the sub-layers underneath it, so you could essentially select one colored box individually.
Copy link to clipboard
Copied
A table is always in a single frame and you cannot move a cell to another location. You can change the color of the cell, edit its content, merge cells, split them, move a row, move a column.
Have a look here: https://helpx.adobe.com/indesign/using/creating-tables.html
Copy link to clipboard
Copied
Just in case it isn’t clear Page Items (which are not layers) are listed in the Layers panel under the Layers that contain them, and by default their names are enclosed in < >, but the names can be edited.
A table is always contained by a text frame, so here I have a table and if I select its containing Text Frame the Layers panel indicates it is selected:
The table and textflow selected:
Layer 1 also contains a rectangle:
Copy link to clipboard
Copied
Hi defaulttdthgd7rfzly,
as Rob already layed out: The brackets around the name of an item showing in the Layers panel could be the default name of an item. Default names are localized. My German InDesign is showing <Textrahmen> for an empty text frame:
If you add text to that frame the first characters of the contents of the frame show up inside the default brackets.
NOTE: Still the frame has no custom name:
But from looking at the name in the Layers panel I cannot know this because you can also use the opening and closing bracket for a custom name you just type in to rename the item.
But a script could tell if you see a custom name or the default name.
The following ExtendScript (JavaScript) script alerts if the default name is used for the selected item or if a custom name is used and the item was renamed:
if( app.selection[0].name == "" )
{
alert
(
"Selected Item:" +"\r"+
"The name you see in the Layers panel is the default name."
)
}else
{
alert
(
"Custom Name of Selected Item:" +"\r"+
app.selection[0].name
)
};
If I edit the name of the selected text frame to is contents the script alert is showing that the default changed:
IMPORTANT:
To make sure an item has the default name just delete its name in the Layers panel and press Return.
The default will be visible.
Regards,
Uwe Laubender
( ACP )
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more