Re: Script to copy Layer/Group to another Open Document?
one question though: is there a way to have this script work with both layers *and* groups? Right now it's only working with layers. If not, then maybe have two seperate scripts, one for layers and one...
View ArticleRe: How to Package and Distribute Scripts + Actions?
Agree that the metrics is a bit short, let's hope we get at least weekly/daily downloads later. And I have the same "downloads = 2x unique", which is a bit unnerving since I'm not aware of issues that...
View ArticleRe: Script to copy Layer/Group to another Open Document?
Sorry, but to copy a group to another document is much more complex. Don't use Extend Script for this. Better is to work with Script listener Plugin (AM code) for this. Or with Extend Script you should...
View ArticleRe: Re: Script to copy Layer/Group to another Open Document?
This might help with Groups and some other kinds of Layers.But it takes the easy route with the target file by using the name to identify it. // some amendments to pixxxelschubser’s code; // 2014, use...
View ArticleRe: adobe script for rotation and position
Rotating and moving layers seems easy enough. Soon I'll figure out how to copy layers.In ESTK’s Help > Object Model Viewer you can check the Properties and Methods for the various objects and what...
View ArticleRe: Script to copy Layer/Group to another Open Document?
You've never marked one of your threads as correct - why not?From a quick look at the general Forum it seems two of twenty threads are marked as correctly answered over there … personally I suspect...
View ArticleRe: Script to copy Layer/Group to another Open Document?
Hi c.pfaffenbichler,I often use the forum search. I preferred reading the correct answers and (in the past) as helpful marked answers, especially in long threads. Others are probably the same opinion....
View ArticleRe: Script to copy Layer/Group to another Open Document?
sorry guys, i wasn't even aware of the 'correct answer' feature - i'll keep my eyes on it from now on
View ArticleRe: Script to copy Layer/Group to another Open Document?
That was not really a problem for me. The explanation is in my other post # 8. And unfortunately there is no possibility more to mark a post as helpful (since the last Jive update). In my eyes that is...
View ArticleRe: Script to copy Layer/Group to another Open Document?
no, it is giving me the "var idT = charIDToTypeID( "T " );" error I use Photoshop CS6
View ArticleScript to rename layers comps batch?
Does anyone know anyscriptto renamebatchcompslayersin asequentialnumbering? For example: layerComps01, layerComps02, layerComps03...
View ArticleRe: adobe script for rotation and position
Thank you for the tips. So far I have been able to do basically what I need to do.I have an xml file that has xy coordinates.I have a layer with a circle.I have successfully made a script that reads...
View ArticleRe: Script to copy Layer/Group to another Open Document?
And unfortunately there is no possibility more to mark a post as helpful (since the last Jive update). In my eyes that is very sad.Well, the last Forum update certainly has (despite some improvements)...
View ArticleRe: Script to rename layers comps batch?
layerComps have a property called name. Just use a for-clause to change the name of each LayerComp.
View ArticleRe: Script to rename layers comps batch?
// 2014, use it at your own risk;#target photoshopif (app.documents.length > 0) {var myDocument = app.activeDocument;for (var m = 0; m < myDocument.layerComps.length; m++)...
View ArticleRe: adobe script for rotation and position
But, I want to set up a timeline of frames and I can't seem to find any documentation about accessing the timeline in script.You probably have to use Action Manger code (as recorded with...
View ArticleRe: Script to copy Layer/Group to another Open Document?
I often use the forum search. I preferred reading the correct answers and (in the past) as helpful marked answers, especially in long threads. Others are probably the same opinion.Fair enough, the Fora...
View ArticleRe: How to Package and Distribute Scripts + Actions?
Hi Nightskyguy, I'm afraid we cannot get much data about your products in terms of metrics and that is yet another reason we are delighted to have moved to the Website https://creative.adobe.com/addons...
View ArticleRe: Re: adobe script for rotation and position
This would create a frame animated based on the Layers inside the topmost LayerSet.It assumes that the file does not have animation yet. // 2014, use it at your own risk; #target photoshop if...
View Article