ramsbh
ramsbh

Reputation: 656

DatePicker in ActionScript

I want to integrate a date picker component using action script for date of birth. any avialable components ? please give url's ?

Upvotes: 0

Views: 1365

Answers (2)

PatrickS
PatrickS

Reputation: 9572

Check the Calendar component @ minimalcomps
http://minimalcomps.com/

Upvotes: 1

Adnan
Adnan

Reputation: 26350

You need to use DateField

 var dp:DateField = new DateField();
 dp.yearNavigationEnabled = true; // enables you to move thru years quickly.
 addElement(dp);

Upvotes: 0

Related Questions