Re: time of opening document
If you go to Photoshop preferences-General at the bottom there is a history log feature. You can save metadata with the image, a separate text file or both that contains information about the edits...
View ArticleRe: Associate Brush/Tool Preset with Layer
Thanks Michael, I'm going to look into this. I'm also looking for a way to do it with 3rd party apps (there's a few good ones that can automate the process)
View ArticleRe: Associate Brush/Tool Preset with Layer
function _selectLayerHandler(desc) { var layerName = app.activeDocument.activeLayer.name; switch( layerName ){ case "Airbrush": selectPreset('Airbrush-Grainy Opaque'); break; case "Pastel":...
View ArticleRe: Associate Brush/Tool Preset with Layer
That's interesting, Mike. How would you go about setting up and running the script that uses the eventListener? Is that something that you run when you start PS, or put in the startup folder?
View ArticleRe: Associate Brush/Tool Preset with Layer
There are two ways to add an eventHander. One is by using the menu. Choose File-Scripts-Scripts Event Manager... then set it up in the dialog that opens. I prefer to install with a sperate script....
View ArticleRe: Associate Brush/Tool Preset with Layer
Thanks, Mike! Made me start thinking about some posibilities.
View ArticleRe: Associate Brush/Tool Preset with Layer
I ensured that my photohop document had layers named 'Airbrush' and 'Pastel'. I also ensured that my active tool presets file had presets named 'Airbrush-Grainy Opaque' and 'Angle - Flat Opaque' . I...
View ArticleRe: Photoshop CC 32Bit Script with Dialogs.
Turned out to be a Preference file MachinePrefs.psp which worked in Photoshop CC 64bit cause CC32bit scripts dialogs not to work go figure. It may have to do with OpenCL support. In CC64bit I used...
View ArticleRe: Associate Brush/Tool Preset with Layer
It is an event script. You don't run it directly. It gets run every time there is a select event. That is if you have installed it as an event script using either the menu or by adding a notifier with...
View ArticleRe: Associate Brush/Tool Preset with Layer
ok, I'm making some progress with it. I've placed the event handler script onto my desktop and named it 'layerPreset.jsx'. My tool presets has the brushes and layers (as named in post#7 above). It...
View ArticleRe: Associate Brush/Tool Preset with Layer
It would be better if you added the eventClass argument when setting up the notifier. That way the script would run only when a layer is selected. As it is now it would run when anything is selected....
View ArticleDistribute Layers with a Specific Value
I found this old post where Paul Riggot created this wonderful and very useful script, something I was looking for, but just wondering if I can request for some few updates to it. 1) Seems like this...
View ArticleRe: Distribute Layers with a Specific Value
Mycort wrote: I found this old post where Paul Riggot created this wonderful and very useful script, something I was looking for, but just wondering if I can request for some few updates to it. 1)...
View ArticleRe: Distribute Layers with a Specific Value
Here's the original post:http://forums.adobe.com/thread/668473 I guess you are right and hoping Paul is still around to make these updates to the original script:)
View ArticleRe: Distribute Layers with a Specific Value
Paul does not contribute here these days. He has a web site with many scripts you can downloas do a search.
View ArticleRe: Distribute Layers with a Specific Value
Here's the link to Paul's website: http://ps-bridge-scripts.talktalk.net Scripts there might not support CC, though.Best Davidewww.davidebarranca.com
View ArticleRe: Distribute Layers with a Specific Value
Yes its http://www.ps-bridge-scripts.talktalk.net/ and distributed layer is there and not binary so you can modify it to your needs.
View ArticleRe: Distribute Layers with a Specific Value
Thanks, I've read in the forums that Paul has stopped being active anymore which is a big shame. I did find his site with the source file for this distribute script. I just hope maybe someone here can...
View ArticleRe: Help needed to enhance Image Processor Pro Script to save transparency in...
Is it also possible to save the TIFF files with (more) compression? Somehow the TIFF files that Image Processor Pro saves are a lot bigger than TIFF files that I manually (even with LWZ or ZIP encoding...
View ArticleRe: Distribute Layers with a Specific Value
Mycort wrote: Thanks, I've read in the forums that Paul has stopped being active anymore which is a big shame. I did find his site with the source file for this distribute script. I just hope maybe...
View Article