notifier
The collection of Notifier objects in the document. Access through the Application.notifiers collection property. For example: var notRef = app.notifiers.add("OnClickGoButton", eventFile) Notifiers must be enabled using the Application.notifiersEnabled property
Notifier
Bases: Photoshop
Source code in photoshop/api/_notifier.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|
event
property
The event identifier, a four-character code or a unique string.
eventClass
property
The class identifier, a four-character code or a unique string.
When an event applies to multiple types of objects, use this propery to distinguish which object this notifier applies to. For example, the Make event ("Mk ") can apply to documents ("Dcmn"), channels ("Chnl") and other objects.
eventFile: Path
property
The path to the file to execute when the event occurs and activates the notifier.
remove()
Deletes this object.
You can also remove a Notifier object from the Script Events Manager drop-down list by deleting the file named Script Events Manager.xml from the Photoshop preferences folder. See Adobe Photoshop CC help for more information.
Source code in photoshop/api/_notifier.py
45 46 47 48 49 50 51 52 53 54 55 56 |
|
Created: 2024-11-17