Use the getDate() and getUTCDate() methods to return the values of the local day of the month and the corresponding day of the month UTC, respectively. : Date « Development « Flash / Flex / ActionScript
Use the getDate() and getUTCDate() methods to return the values of the local day of the month and the corresponding day of the month UTC, respectively.
package{ import flash.display.Sprite;
public class Main extends Sprite{ public function Main(){
var dThen:Date = new Date(1523, 3, 13);
trace(dThen.getDate()); // Displays: 13