Search found 20 matches

by StoryCave
Sun Nov 20, 2016 7:20 pm
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Hehe, even when you say that it's buggy it's still works amazingly, so hats off for being a perfectionist ! ;) Thanks for your feedback on the front page ! For your information I'm a storyboard artist, and usually draw characters that already were designed by someone else in production, I don't need...
by StoryCave
Sun Nov 20, 2016 5:47 pm
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Hi Kukurykus, Thanks a lot for the update, I've looked into it and saw you added some code, I combined it with my other script and it works, I don't know what bug you might referring to but it's probably my level in programming that's still behind ;) I've actually resumed the courses I was taking an...
by StoryCave
Sat Oct 08, 2016 9:55 pm
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

I make sure I work with only one document, if sometimes I have too many panels (ie. layerSets) that slows down Photoshop, I split the file. I usually don't have any problems with my actions, and don't use many camera moves so it's not really an issue, but if I could get to create the CAM layer with ...
by StoryCave
Fri Oct 07, 2016 10:07 pm
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

True, it's not clear and a bit messy... :oops: At first the script stopped after the stroked selection in early versions, and it was fine. But then I wanted to create that CAM layer with just one history state, so it doesn't clutter the cache (I often work with +50 layerSets on several psd files). I...
by StoryCave
Fri Oct 07, 2016 1:35 pm
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

1) indeed ;) 2) That's also what I'm trying to figure out with JavaScript syntax, in the examples I'm learning from the book Eloquent Javascript (I'm still in the beginning), the author doesn't always add curly brackets and semicolon, I need to get this right. 3) And yes it worked when I tried, than...
by StoryCave
Thu Oct 06, 2016 10:20 am
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Hi Kukurykus, No problem, let's do some troubleshooting. The reason I believe it didn't work at first (apart from the version difference between CS and CC) is that I was trying to use your script using my StoryCaveTemplate.jsx file with the background layer that was already fixed and inside the laye...
by StoryCave
Mon Oct 03, 2016 11:05 am
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Hi Kukurykus, To answer you question, this code still doesn't work even while selecting a layer or the group : aL = (aD = 'activeDocument') +'.activeLayer', bol = true, arr = [] while(bol) aL += '.parent', String(AL = eval(aL)).slice(1, 9) != 'LayerSet' ? bol = !bol : arr.push(AL.name) aDl = aD + l ...
by StoryCave
Fri Sep 30, 2016 10:15 am
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Actually, there might be a misunderstanding here, you've already fixed the 27th of September the background layer position movement inside the layer Set (which needs only to happen once per activeDocument - as I'll duplicate the folder for each storyboard panel -). This was already perfect and took ...
by StoryCave
Thu Sep 29, 2016 10:34 am
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Thanks for your feedback, I've tried the code but only got an "undefined" (with the whole code) or "set()" (after removing the backgroundLayer code), the idea is exactly to select anything inside the main layerSet (ex. SQ_00_SH_000_XXX). I'm also trying to understand the code as ...
by StoryCave
Wed Sep 28, 2016 9:01 am
Forum: Help Me
Topic: Creating and moving an artLayer inside "active" layerSet
Replies: 24
Views: 33442

Re: Creating and moving an artLayer inside "active" layerSet

Well, this is just perfect, thanks a lot Kukurykus :mrgreen: I'll definitely give you massive credit on my thank you list. Back to your first reply : To add a layer inside active layerSet (inside other layerSet when that "inside layerSet" is selected): activeDocument.activeLayer.artLayers....