I have about 100 frames that need to have AL enabled on them. How can I enable it on multiple at once instead of doing it one by one?
Page 1 / 1
I don’t know if there’s a way to do this in the regular UI but I installed the Scripter plugin and wrote a quick script to apply auto layout to multiple selected frames at once without grouping them. I don’t know much programming but this is what I wrote, and you can just change it to VERTICAL
if that’s what you want. It seems to work, though probably not the answer you were looking for.
for (let n of selection()) {
if (isFrame(n)) {
n.layoutMode = "HORIZONTAL"
}
Thank you Gleb and Brian!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.