David_Storm
Explorer
David_Storm
Explorer
Activity
Nov 28, 2024
07:40 AM
It's a solution. calling an external script from the automation. It works. Thanks.
... View more
Oct 21, 2024
12:41 AM
@high voltaged53703767
I'd suggest that you start a new topic for visibility and conciseness.
... View more
Aug 23, 2023
05:48 AM
Hi @CShubert Problem fixed in Adobe Photoshop: 25.0.0 20230820.m.2296 c61c3a5 x64. Thanks.
... View more
Aug 23, 2023
05:48 AM
Hi @CShubert Problem fixed in Adobe Photoshop: 25.0.0 20230820.m.2296 c61c3a5 x64. Thanks.
... View more
Jul 30, 2023
11:39 PM
I will consider the suggestion. Thanks @Tom Ruark
... View more
Sep 08, 2021
08:36 AM
Newer location is here as of 2021-09: https://developer.adobe.com/console/servicesandapis
... View more
Nov 06, 2020
07:46 AM
Using big files (more than 5Gb) to get document information to know number of layers or selected layes in a automation, Photoshop spend a lot of time creatiing histograms. Execution this short code on a big file, Photoshop starts create histograms. SPErr error = kSPNoError; PIActionDescriptor result = NULL; PIActionReference reference = NULL; Boolean hasKey; error = sPSActionReference->Make(&reference); if (error) goto returnError; error = sPSActionReference->PutEnumerated(reference, classDocument, typeOrdinal, enumTarget); if (error) goto returnError; sPSActionControl->Get(&result, reference); if (result != NULL) { //.... } returnError: if (result != NULL) sPSActionDescriptor->Free(result); if (reference != NULL) sPSActionReference->Free(reference); return (error); I'm trying to set 'keyUseCacheForHistograms' in some places with same result. There is any way to get document information dissabling create histograms in Photoshop?
... View more
May 14, 2020
12:02 AM
There is no solution from Adobe at this moment. You have to use 20.0.8 version to debug plugins in Mac.
... View more
Feb 14, 2019
10:34 AM
Unfortunately, this noise, is to support some other features that need to track if the app is in a modal state. Much to my protest. What I can do is change ScriptListener to ignore those events. Maybe I should add that as an option you can set in the plugin.
... View more
Jun 06, 2013
08:05 AM
....I'm sure is a Photshop bug. Listeners capture the undo event if is called from de menu. Listeners don't capture the undo event if is called from de keyboard acelerator (Cmd.+Z).
... View more