Flex DateFormatter bug, missing January 1970 month name
Thursday, June 18th, 2009Today, while working on a small piece of code I discovered something that appears to be a DateFormatter bug. I was using following DateFormatter: [sourcecode lang='as3'] private var formatter:DateFormatter = new DateFormatter(); … formatter.formatString = “MMMM”; [/sourcecode] to display just the month names. I didn’t really care about the year when constructing new Date so [...]