Skip to main content
November 30, 2011
Question

Full list of Event ID

  • November 30, 2011
  • 2 replies
  • 2586 views

Anyone have a full list of Event IDs, the list I have in the VBScript Reference pdf doesn't have all of them. When I run script listener I get IDs such as "T   ", "Usrs", "At  ", "Chnl" and "Usng"

This topic has been closed for replies.

2 replies

Tom Ruark
Inspiring
November 30, 2011

A more exact list would be found in the Photoshop SDK. See PITerminology.h and PIStringTerminology.h. Some of our plug-ins and 3rd party plug-ins have their own keys and strings. For the application features 99% of them should be in those two files.

Inspiring
November 30, 2011

xtools/xlib/PSConstants.js is autogenerated from those two header files. This lets you do things like

PSString["3DCreatePostcard"]

PSString.AntialiasGloss

PSEnum.ModeGray

PSEvent.Equalize

PSKey.BevelEmboss

I regenerate the file for each new rev of the SDK. As Tom said, most of the terms are in there. Noticably missing are terms for Save For Web...

c.pfaffenbichler
Community Expert
Community Expert
November 30, 2011

This list is from 2005, so it may lack some stuff, still maybe it can help you:

http://www.pcpix.com/Photoshop/string.htm

I recommend considering using JavaScript for Photoshop-Scripting because more other users do and because it’s platform independent.