Batch script in Photoshop to remove background. Path has different name.
Hi,I would like to make a script that selects a saved path in a image, invert the selection to select the background and then remove that area or color it white. That's not a problem as long as all...
View ArticleWhat why and when charIDToTypeID ?
I'm seeing this "charIDToTypeID" thing being used in many scripts both Adobe and developers, but I couldn't find any explanation as to why this "special adobe characters exist". Could someone please...
View ArticleRe: Importing Assets & Filename Creation
Mycort wrote:I know a thing or two about digital images where i worked with photoshop for 20 years and do design as a proffession. Amazing
View ArticleRe: Selecting multiple layers and merge
Thanks Michael,it works great but the problem is that i lose the folder of the layers. Is it posible to merge the layers within the folder and keeping the folder? Maurits
View ArticleResize for vector objects in CC
The Photoshop CC scriting guide is out, but I there are no additions to the API related to new vector features. For example modifying border radius or resizing the vector object in pixels is missing....
View ArticleRe: Resize for vector objects in CC
Snap vectors is an app.preference. Vector mask density and feather are mask settings. All three can scripted using Action Manager.
View ArticleRe: Selecting multiple layers and merge
Yes, for that you have to select the layers that are in the set. Here is one way using javascript function selectLayerBelow( add ){ var desc = new ActionDescriptor(); var ref = new...
View ArticleRe: Resize for vector objects in CC
Snap vector isn't helpful if existing shape has size with decimals. And mask density and feather doesn't allow to edit live shape properties, like these http://d.pr/i/f9MI
View ArticleRe: How to "change" resolution from DPI to l/cm?
It seems that if you save the document for Save For Web, then apply the metadata, it seems to work. As an example create a docment and run the following code. var f = File(Folder.desktop +...
View ArticleRe: What why and when charIDToTypeID ?
Quote from the Object Model Viewer: Converts from a four character code to a runtime ID. I think the character IDs were introduced to make things easier as they should be more easy to remember than the...
View ArticleRe: Resize for vector objects in CC
I would say use the scriptListener, but I don't see that posted yet for CC. Very curious how Adobe is going to handle updates to that with the faster updates to PS CC.
View ArticleRe: Resize for vector objects in CC
The CS6 version of scriptlistener works with CC. Just copy to the correct folder and restart. And yes, those settings are recorded and can be scripted using Action Manager.
View ArticleRe: Resize for vector objects in CC
Yeah, updates are being rolled slowly even for critical bug fixing, I think it will take time until adobe adjust to new product cycle. What bothers me is that with CC they have less pressure to release...
View ArticleRe: Resize for vector objects in CC
Actually, I think they will be releasing a lot of new improvements and innovations. I'm sure they do need to adjust to the new cycle, but I don't think that with this new process that Adobe will be...
View ArticleRe: Resize for vector objects in CC
Hope so, I just got this impression because of recent Photoshop CC bugs, and these bugs are being fixed slowly even though for some users it is not barable to use the software
View ArticleRe: Resize for vector objects in CC
I agree. This is one aspect of CC that needs looking at, and that is being able to backtrack and upload an older version of CC if a new one has bugs that completely mess up your workflow. I've been...
View ArticleRe: Batch script in Photoshop to remove background. Path has different name.
if (app.activeDocument.pathItems.length > 0) {var thePath = app.activeDocument.pathItems[0]};should identify the first path. I would like to make a script that selects a saved path in a image,...
View ArticleHow to select an action via script?
Hi, I'd like to select an action in the Photoshop using script. An example will be as follows, selecting "Aged Photo".How could I do so? Your help is very much appreciated.
View Article