Photoshop scripting - using enumerates.
I'm starting to learn Photoshop python scripting and can't figure out the following:
when I need to use some of the Photoshop Classes, I use for example:
solidColor = win32com.client.Dispatch("Photoshop.SolidColor") # import SolidColor class
but how can I import photoshop Enumerations, such as FontSize, BlendMode etc.?
I always end up with error: ".... not defiend" when trying to use Enumerations like: BlendMode.OVERLAY.
Could somebody please show any example of Photoshop Enumerations importing?