Can you access perforce and check out files from a photoshop script?
I want to have a custom save dialog that looks to see if the open file is checked into perforce, if it is then it should ask to check it out for you.
View ArticleRe: Selecting the brightest pixels
im afraid to tell you, but the script is acting weird...i tested the script and that is what i got.. in the first image we can see the pixels script selects...image 2 - we see the very first value that...
View ArticleChange Working Spaces
Is there a way to change the Color Settings CMYK and RGB working spaces with js? I'm not having a problem assigning or converting profiles for a document, I want to change the application color settings.
View ArticleRe: Change Working Spaces
Hi Rob Day,do you mean something like this? if (app.colorSettings != 'AdobeRGB'){ app.colorSettings = 'AdobeRGB'; } Have fun
View ArticleRe: How can I create a curves adjustment layer in JavaScript?
Here is the script I use. The way it works is you choose 2 spots with the color picker tool. Spot 1 is the "good" color and spot 2 is the "bad" color. The script will attempt to use a curves adjustment...
View ArticleRe: Can you access perforce and check out files from a photoshop script?
What are you trying to do? All files are not open through a dialog and all files are not opened at through Photoshop user interfaces level file can open and processed through a batch process and in...
View ArticleRe: Can you access perforce and check out files from a photoshop script?
We're going to have a source directory and a "final" directory. These will have mirrored folder structures but the source folder will contain master .psd files with different groups and such. The...
View ArticleRe: Change Working Spaces
I tried that but it just opens the Color Setting dialog without changing anything. I want to change the Color Settings Working Space before I open a file. I'm actually working working in AppleScript...
View ArticleRe: Change Working Spaces
function setWorkingRGB(space) { function cTID(s) { return app.charIDToTypeID(s); }; function sTID(s) { return app.stringIDToTypeID(s); }; var desc1 = new ActionDescriptor(); var ref1 = new...
View ArticleUsing customOptions to store history state
Hi everyone, Its pretty much simple I think but I'm a begginer, so I can't find the way to do it, and I didn't find the answer, I hope someone can help here. I would like to run a first .jsx in wich I...
View ArticleRe: Can you access perforce and check out files from a photoshop script?
I know nothing about nothing about perforce or its features. If it has any ability for you as a script writer to edit file metadata where you can record the files current status in some area like...
View ArticleRe: How to insert EXIF date time data on photo using Photoshop CS5.5
Scripting in Photoshop didn't happen until Photoshop CS. Other than getting into programing language, I doubt there is much you can do.
View ArticleRe: How to insert EXIF date time data on photo using Photoshop CS5.5
Actually, there was scripting available in PS7 but there wasn't any ScriptUI until the next rev, PS 8 (aka PSCS). There were a lot of other things that were missing, too, but people were still writing...
View ArticleRe: How to insert EXIF date time data on photo using Photoshop CS5.5
You can use an action the use a script to add a text layer containing EXIF Information. The Action could then position the layer over the image using Photoshop align layers to selection and also style...
View ArticleRe: How to automatically remove distortion on image with many...
I am zero at math, programming and Photoshop But as I said, manual solution (not script) will be acceptable, and any obvious solutions are welcome too (because I just started using Photoshop for my...
View ArticleRe: Change Brush Rotation Angle - JSX Script
ps-scripts.com • View topic - Setting brush optionsrotating brushes using file stream of saved brushes in javascript
View ArticleRe: How to automatically remove distortion on image with many...
The "proper" approach would seem to be making the photographs with the proper studio setup to avoid distortions right away. (edited) Alternatively I would recommend• converting the image to a Smart...
View ArticleUsing getFiles() to run quicker: avoiding cleaning for() and getting the...
Many times i have collected files form a folder using no mask or a file mask like this:.getFiles() // gets all (also hidden files).getFiles('*.jpg') >> all inner jpgs.getFiles( /\.(DNG?|CR2?)$/i...
View ArticleRe: Change Working Spaces
Thanks, but I'm getting an error. Tried in both CC and CC2014:
View Article