Mega Code Archive

 
Categories / Flash ActionScript / Development
 

Use the getDate() and getUTCDate() methods to return the values of the local day of the month and the corresponding day of the

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     }   } }