Test mask visibility
The photoshop document has a layer with a layer mask.Using the extended script or javascript,How would I test if the layer mask is visible or hidden?
View ArticleRe: Re: Switch Layers Script Question
I've removed line 29 so the selection isn't index0 and replaced it with the variable that I defined at the top of the script ( var Current = app.activeDocument; ) Problem is now it's throwing me...
View ArticleAdd custom menu to Adobe Bridge
Is it possible to add a custom menu item to Adobe Bridge to call the Liquify Interface? Currently Photoshop CC 2014 is not able to load the liquify interface through and action or script
View ArticleRe: Add custom menu to Adobe Bridge
You should be able to do it through an action. I do. Just make sure that you have a raster layer selected.
View ArticleRe: Switch Layers Script Question
Update, after playing with this for a few hours, I've managed to get around the error messages, but the problem now is that when the list pops up, some of the documents are listed as many as 3 times....
View ArticleRe: Re: Switch Layers Script Question
Here's your original code with just minor changes:Added a var to hold activeDocument index.Added if statement to set the above variable.Added a line to set the dropdownlist selection. You should also...
View ArticleRe: Switch Layers Script Question
nevermind, I got it! WOOHOO! It works now Thanks for your guys help.. and just want you to know that I'm not looking for handouts... I'm genuinely trying to learn this type of code and after a few...
View ArticleRe: Switch Layers Script Question
oh geez - thanks csuebele - I replied with my code literally 1 minute after you!! Thank you though.. what a coincidencel lo... I'll study your script as well, it's probably more stable than mine.
View ArticleRe: Test mask visibility
#target photoshopif (app.documents.length > 0) {var ref = new ActionReference();ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") ); var layerDesc =...
View ArticleRe: Delete all groups and layers that are switched off, even if they are locked
The other was round, but this should unlock all layers, after that delete hidden layers should work. // unlock all layers; // based on code to link layer masks by paul riggott; // 2014, use it at your...
View ArticleRe: Selecting the brightest pixels
First of all, thank you very much for such an incredible work. based on my knowledge, i would've taken a year to write such script. so appreciate that so much. Just one little issue i have encountered....
View ArticleIssue with Extentscript's item background color
Since this program has been used for the creation of normal testing a progress for my own extension for Photoshop, it has been the bane of my existence. I have spent so much time trying to force my own...
View ArticleRe: Re: Delete all groups and layers that are switched off, even if they are...
Looks promising but it doesn't seem to delete the hidden groups. I have made a photoshop file with all the layer/groups with instructions linked below. Basically, i just want the green layers left on...
View ArticleRe: Re: Delete all groups and layers that are switched off, even if they are...
Looks promising but it doesn't seem to delete the hidden groups.As I stated the Script I posted unlocks the Layers, adding the "Delete Hidden Layers" you’d have to do yourself.
View ArticleRe: Test mask visibility
Thank you very much for your generous contribution. I will play with this code to toggle the visibility of the layer mask.
View ArticleRe: Move files from one folder to another javascript?
Hi! Thanks for the sample script. I'm trying to use it on a script I'm making for after effects (to easily change footage paths or to copy/move footage). I'm getting an error on the linevar BAT = new...
View Articleclose ALL open files and save jpg with jpg option
Hi, I have some (a lot) of -jpg images to crop, and resize, while I have to do this one by one based on what portion of the image to crop, once done I need to close, and save them. To speed up the...
View ArticleRe: close ALL open files and save jpg with jpg option
Add this snippet to a script file.Load script file in PS scripts folderRestart photoshopAssign keyboard shortcut to script ///////////////////////////////////////////// #target photoshop //Make...
View ArticleRe: close ALL open files and save jpg with jpg option
Thank you. It works for closing, but not for the jpeg image quality option. When running the script it does close the files without asking to confirm the save, but after that it asks me the options for...
View Article