Re: Generating an alpha channel for document
it won't record in ScriptListener.It looks like it does for me in CS6. // =======================================================var idMk = charIDToTypeID( "Mk " ); var desc7 = new...
View ArticleRe: Checking if layer has smart filters
Thanks.Could you please also tell me how I determine if it's visible or not?Also I'd appreciate some sort of reference on how I can figure these things out myself.
View ArticleRe: Generating an alpha channel for document
Thanks.I guess it doesn't work for me bacause I'm using the CS6 Listener in CC or something.
View ArticleRe: Generating an alpha channel for document
I also use the CS6 plug-in with CC and it records for me so I don't think that is the reason. Did you have ESKT running when you tried to record? I have noticed that ESKT seems to check the connection...
View ArticleRe: Batch-action for 2 images in a set
Try searching this forum for processing pairs and groups of files or two files you will get hits like http://forums.adobe.com/message/5215284#5215284 Do you have a programming background? Script are...
View ArticleGroup fill opacity
Hi.I'm trying to set the opacity and fillOpacity of all layers and groups to 100% (an later also store the previous values in an array and restore them when done).This works fine for the artLayers but...
View ArticleRe: Batch-action for 2 images in a set
Thanks a lot for your kind effort.Indeed I have some programming background in Visual Basic - but that's looooong time ago and I do not believe that I could set up this procedure for photoshop on my...
View ArticleRe: Checking if layer has smart filters
Other than what little there is in the scripting guide I don't think there is a reference or documentation on using Action Manager. I have not found a way to determine if a smart filter is visible(...
View ArticleRe: Group fill opacity
You can get/set a layerSet's fillOpacity with Action Manager.function getActiveLayerFillOpacity(){ var ref = new ActionReference(); ref.putEnumerated( charIDToTypeID("Lyr "),...
View ArticleRe: Getting weird error: "General Photoshop error occurred".
Is your text layer using a layer style? If so, this routine should find the font and color in use. var fontsInUse = [];var colorsInUse = []; if ( documents.length > 0 ) { GetFontUsage(...
View ArticleRe: Checking if layer has smart filters
Hmm, and would enabling the specific filter also enable the master setting? What I'd like to do is have a checkbox in a dialog that toggles the SmartFilters on all the layers in the document...
View ArticleRe: Group fill opacity
Thanks.I wish there was a way to do all these things using the DOM, this Action Manager just seems so messy.
View ArticleRe: Group fill opacity
Ah, wait, setting still doesn't work on the fillOpacity of the group, only on an artLayer.(Gettting "General Photoshop error... This functionality may not be available...) on the last line.
View ArticleRe: Group fill opacity
Sorry, I posted code from my code library without testing. Either Adobe has changed something or my code never worked. It is strange that both scriptlistener and actions record setting a layerSet...
View ArticleRe: Checking if layer has smart filters
Hmm, and would enabling the specific filter also enable the master setting?Yes and without a way to get the current master setting you run the risk of changing the current setting. It would be easy to...
View ArticleRe: Batch-action for 2 images in a set
geraldhuber wrote: I have already a perfectly working action (batch-procedure) in photoshop You do not for batch can not open pairs of files fyou action. You have an action that can not be batched.
View ArticleRe: "Make frames from layers" & ScriptListener
Hi Paul, Nice to hear you say that (even though this is an old post) I find the same thing as well. if I can't get scriptinglistener to output anything in CS6 or CC, I can open my old CS3, do the same...
View ArticleRe: "Make frames from layers" & ScriptListener
The only time I have trouble with scriptlistener is when ESTK is also running with Photoshop as a target app. If ESTK is not running the plug-in records fine. However Adobe changed the way adjustment...
View ArticleRe: "Make frames from layers" & ScriptListener
Ya know... I almost ALWAYS have the ESTK running with Photoshop as the target App. AHHA! I'll close it and try a few tests and see if that helps.
View Article