Livecode Wiki
Advertisement

Specifies the drop shadow to use for an object.Syntax:

set the dropShadow[<propertyName>] of object to <propertyValue>

Examples:

set the dropShadow of button "Ok" to tDropshadowPropertiesArray
set the dropShadow["color"] of me to "255,0,0"

Use the dropShadow property to create a shadow effect on an object. The dropShadow is an array style property, each key of the array controls a different dropShadow parameter that will affect its final appearance. The easiest way to adjust these properties is by using the Graphic Effects card of the property inspector which has full control over each parameter. To control the effect by script use the following properties:

dropShadow["color"]

     The color of the shadow, in the format red,green,blue where each value is between 0 and 255.

dropShadow["blendMode"]

     How the shadow is blended with objects behind it. This is one of the following values:

          - "normal" : the shadow is laid over the background.

          - "multiply"

this results in a darkening effect

          - "colorDodge" : this results in a lightening effect

dropShadow["opacity"]

     How opaque the shadow is. The value is between 0 (fully transparent) and 255 (fully opaque).

dropShadow["filter"]

     Which algorithm is used to render the shadow. This is one of the following options:

          "gaussian" : highest quality (and slowest)

          "box3pass" : high quality.

          "box2pass" : medium quality

          "box1pass" : low quality (and fastest)

     When using the "colorDodge" blend mode, it is recommended that you set the filter mode to "gaussian".

dropShadow["size"]

     The size of the shadow, i.e. how large the shadow is. This is between 0 and 255.

dropShadow["spread"]

     This controls where the effect begins to blend. This is between 0 and 255.

dropShadow["distance"]

     This controls how far the shadow is offset from the object. This is between 0 and 359.

dropShadow["angle"]

     The controls the direction the shadow is cast in. This is between 0 and 360.

See also: colorOverlay (property),outerGlow (property),blendLevel (property),ink (property),

Advertisement