|
|
document.getBlendMode()
Usagedocument.getBlendMode()
ReturnsA string
that specifies the blending mode for the selected object(s). If
more than one object is selected and they have different blending
modes, the string reflects the blending mode of the object with
the highest depth.
Note: The return value is unpredictable
if the selection contains objects that don’t support blending modes,
or that have a blending mode value of "normal".
DescriptionMethod;
returns a string that specifies the blending mode for the selected object(s).
ExampleThe
following example displays the name of the blending mode in the Output
panel:
fl.trace(fl.getDocumentDom().getBlendMode());
|