ActionScript 2.0 Components Language Reference |
|
|
|
| DateField component > DateField.pullDown | |||
Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
dateFieldInstance.pullDown
Property (read-only); a reference to the DateChooser component contained by the DateField component. The DateChooser subcomponent is instantiated when a user clicks on the DateField component. However, if the pullDown property is referenced before the user clicks on the component, the DateChooser is instantiated and then hidden.
The following example sets the visibility of the DateChooser subcomponent to false and then sets the size of the DateChooser subcomponent to 300 pixels high and 300 pixels wide:
my_df.pullDown._visible = false; my_df.pullDown.setSize(300, 300);
|
|
|
|