growEditionSize help #176
Unanswered
jjclay
asked this question in
Help + Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a proper place to request an additional feature? I would like the growEditionSize to be independent of all other layer configurations. In other words, I would like to be able to do this:
{
growEditionSizeTo: 1,
namePrefix: "character one", // Use to add a PREFIX to Metadata
name:
layersOrder: [
{ name: "top/character" },
], // ------------> CLOSE OF layersOrder:
}, // -------
{
growEditionSizeTo: 1,
namePrefix: "character two", // Use to add a PREFIX to Metadata
name:
layersOrder: [
{ name: "top/character2" },
], // ------------> CLOSE OF layersOrder:
}, // -------
The reason is this. I am using the z-indexing and if/then logic and referencing only the top root folder in my config.js for the majority of my collection. I pretty much control everything through the layers folders layout. However, I would like to add some individual editions to the front of the collection. I have around 40 of them, and I want them in alphabetical order. Every time I add a new one that belongs in the middle, I have to modify the growEditionSize of every edition that comes after that.
I found in main.js where I can add all of the growEditionSizes together to calculate the grand total. But I'm not a coder and I can't seem to get this to work. I can see it properly updating the total size that I've calculated, but the abstractedIndexes is not being updated properly and only creates the first edition.
while (layerConfigIndex < layerConfigurations.length) {
Any help would be appreciated. If I should place this question somewhere else, please let me know.
Beta Was this translation helpful? Give feedback.
All reactions