User Guide
DateChooser.scroll 427
DateChooser.monthNames
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
dateChooserInstance.monthNames
Description
Property; an array of strings indicating the month names at the top of the DateChooser
component. The default value is
["January", "February", "March", "April", "May",
"June", "July", "August", "September", "October", "November", "December"]
.
Example
The following example sets the month names for the instance my_dc:
my_dc.monthNames = ["Jan", "Feb","Mar","Apr", "May", "June","July", "Aug",
"Sept","Oct", "Nov", "Dec"];
DateChooser.scroll
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
Usage 1:
var listenerObject:Object = new Object();
listenerObject.scroll = function(eventObject:Object) {
//...
}
dateChooserInstance.addEventListener("scroll", listenerObject)
Usage 2:
on (scroll) {
//...
}