Steps to reproduce:
in Mac Leopard Flex Builder 3:
1. Create a simple project with just this code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml">
<mx:Style>
@font-face {
src: local("Arial");
fontFamily: mainFont;
}
.mystyle1 {
fontFamily:mainFont;
fontSize: 20pt;
}
</mx:Style>
<mx:Script>
</mx:Script>
<mx:Label text="€ 400"/>
<mx:Label styleName="mystyle1" text="€ 500"/>
</mx:Application>
Actual Results:
the label with the no embedded font displays the EUR symbol € (€ 400), but the embedded one doesn't (just 400)
Expected Results:
both displaying "€ 400"
Workaround (if any):
not found yet