1////////////////////////////////////////////////////////////////////////////////
2//
3//  ADOBE SYSTEMS INCORPORATED
4//  Copyright 2006 Adobe Systems Incorporated
5//  All Rights Reserved.
6//
7//  NOTICE: Adobe permits you to use, modify, and distribute this file
8//  in accordance with the terms of the license agreement accompanying it.
9//
10////////////////////////////////////////////////////////////////////////////////
11
12/**
13 *  Modality of components launched by the PopUp Manager is simulated by
14 *  creating a large translucent overlay underneath the component.
15 *  Because of the way translucent objects are rendered, you may notice a slight
16 *  dimming of the objects under the overlay.
17 *  The effective transparency can be set by changing the
18 *  <code>modalTransparency</code> value from 0.0 (fully transparent)
19 *  to 1.0 (fully opaque).
20 *  You can also set the color of the overlay by changing the
21 *  <code>modalTransparencyColor</code> style.
22 *
23 *  @default 0.5
24 *
25 *  @langversion 3.0
26 *  @playerversion Flash 9
27 *  @playerversion AIR 1.1
28 *  @productversion Flex 3
29 */
30[Style(name="modalTransparency", type="Number", inherit="yes")]
31
32/**
33 *  The blur applied to the application while a modal window is open.
34 *  A Blur effect softens the details of an image.
35 *
36 *  @see flash.filters.BlurFilter
37 *
38 *  @default 3
39 *
40 *  @langversion 3.0
41 *  @playerversion Flash 9
42 *  @playerversion AIR 1.1
43 *  @productversion Flex 3
44 */
45[Style(name="modalTransparencyBlur", type="Number", inherit="yes")]
46
47/**
48 *  Color of the modal overlay layer. This style is used in conjunction
49 *  with the <code>modalTransparency</code> style to determine the colorization
50 *  applied to the application when a modal window is open.
51 *
52 *  @default #DDDDDD
53 *
54 *  @langversion 3.0
55 *  @playerversion Flash 9
56 *  @playerversion AIR 1.1
57 *  @productversion Flex 3
58 */
59[Style(name="modalTransparencyColor", type="uint", format="Color", inherit="yes")]
60
61/**
62 *  Duration, in milliseconds, of the modal transparency effect that
63 *  plays when a modal window opens or closes.
64 *
65 *  @default 100
66 *
67 *  @langversion 3.0
68 *  @playerversion Flash 9
69 *  @playerversion AIR 1.1
70 *  @productversion Flex 3
71 */
72[Style(name="modalTransparencyDuration", type="Number", format="Time", inherit="yes")]
73