--- In [email protected], Eric Cancil <ecan...@...> wrote:
>
> When I try to embed a font with a space in it in Flex I get an error.
>
> @font-face {
> src: url("../asset/font/futura.swf");
> fontFamily : Futura Medium;
> }
>
> Although this font exists within the SWF i get the following error font (*)
> with normal weight and regular style not found.
I don't think that the name you put in the fontFamily spot in the CSS has to
agree with anything in the font itself...I belive it's just a "handle" to allow
you to refer to it as you're applying it to components.
Try:
@font-face {
src: url("../asset/font/futura.swf");
fontFamily : foo;
}
And see what happens.