Re: Move files from one folder to another javascript?
Is there a way to add a step to my action to safely "close photoshop" after IPP finishes? This will free up ram on my processing machine, when the script is not in use.
View ArticleRe: Can I have a preview image(tiff) in panel?
The Navigator panel has a preview of your .psd with layers. Infact I think it works with all file formats. It can be re-sized to whatever size you want. You may have already known all this. But if not,...
View ArticleRe: Can I have a preview image(tiff) in panel?
Hi, boo. First of all thank you. I want the preview image in my panel rather than just have a preview in navigator panel.
View ArticleRe: Help: need a script to merge all layers, even if there is only one layer
Trying to get your code to work in extendscript for CS5,but not having any joy. Is there an equivalent for this?
View ArticleRe: Move files from one folder to another javascript?
I'm sure I have see a way to close down Photoshop in a Photoshop script. I never had the need to. It may be a simple statement like app.close(); I don't know javascript and only hack Photoshop script...
View ArticleRe: Help: need a script to merge all layers, even if there is only one layer
Make sure extendscript is targeting photoshop, or add this to the top of your co: #target photoshop you could also try to use this instead of merge visable: activeDocument.flatten() that should do...
View Articleexport file info data
i want to export pixel dimensions and color space data from a few thousand images to text files. i discovered that the information can be exported as a metadata template from file info (camera data 2),...
View ArticleRe: Help: need a script to merge all layers, even if there is only one layer
Right Ok, should have said I'm using Illustrator CS5. Can it be done it that?
View ArticleRe: export file info data
So this is real is. I'm going to give you the code, then record an action to play this javascript file that you copy and past the code into. you can then run a batch, and var imageHeight =...
View ArticleRe: export file info data
You've several options available to you… As you have mentioned AppleScript I will start there…AppleScript has a faceless app called Image Events you can use this to extract the properties you want…This...
View ArticleRe: Help: need a script to merge all layers, even if there is only one layer
ah right, if your in illustrator and trying to do it:In your Layers palette, click on the little options arrow and scroll down to "flatten artwork."Voila.
View ArticleSimple (i guess) Photoshop scripting quesiton ;)
Hi guys, Just a quick question... I've looked on the forum and on the web but can't find a working solution for my, I think, simple problem. I have a Photoshop image using variables and external data...
View ArticleRe: Help: need a script to merge all layers, even if there is only one layer
I Was trying to do it within a script
View ArticleRe: export file info data
this actually looks kind of promising.i copied your code into a file i called metadata1.js, and recorded an action that does nothing but open a file and run the script.i think it worked because the...
View ArticleRe: ContactSheetII para photoshop cc
Supply pertinent information for quicker answersThe more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in...
View ArticleRe: Simple (i guess) Photoshop scripting quesiton ;)
It may be easier the include both logo on different layers in your template psd file run your data driven graphics job. Then process the populated output files with a script that would retrieve the...
View ArticleRe: Simple (i guess) Photoshop scripting quesiton ;)
With data driven graphics and datasets you have several choices. You could have several logo layers and use the data to control which is visible. I think that would be the best way. You could use the...
View ArticleRe: Looping through layers is slow.
Sorry, forgot this. suspendHistory tells Photoshop to run a part of script without saving the undo state for each step. Basically everything is one big undo (which is typically what you'd want in any...
View ArticleRe: Re: Script to search layer names
@Michael: Thank you for the awesome code! Annotation: line 4 must be the following: var re = /rA/;// a reg exp var matches = collectNamesAM(re);// get array of matching layer indexes for( var l = 0;...
View Article