Mega Code Archive
Setting ranges in font-face declarations
@namespace mx "http://www.adobe.com/2006/mxml";
@font-face {
src:url("a.ttf");
fontFamily: myFontFamily;
flashType: true;
unicodeRange: U+0041-U+005A, /* Upper-Case [A..Z] */
U+0061-U+007A, /* Lower-Case a-z */
U+0030-U+0039, /* Numbers [0..9] */
U+002E-U+002E; /* Period [.] */
}
mx|TextArea {
fontFamily: myFontFamily;
fontSize: 32;
}