Ok,
ich habe die fonts in einer swf eingebettet und versuche diese swf zu laden,
aber irgendwie klappt es nicht

,
es werden auch keine Fehler angezeigt, also er findet die font in der swf
unter diesem Link:
Klick Mich könnt ihr mein Projekt herunterladen.
unter dem Ordner src/fonts/ sind auch meine .fla dateien in dem ich die fonts eingebettet habe.
PHP-Code:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx">
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
/*font Myriad Pro, wird aus einer swf geladen*/
@font-face{
src: url("fonts/fonts.swf");
fontFamily: "Myriad Pro";
}
@font-face{
src: url("fonts/fonts.swf");
fontFamily: "Myriad Pro";
fontWeight: bold;
}
@font-face{
src: url("fonts/fonts.swf");
fontFamily: "Myriad Pro";
fontStyle: italic;
}
@font-face{
src: url("fonts/fonts.swf");
fontFamily: "Myriad Pro";
fontWeight: bold;
fontStyle: italic;
}
/*font Tahoma, wird aus einer swf geladen*/
@font-face{
src: url("fonts/fonts_2.swf");
fontFamily: "Tahoma";
}
/*font Segoe Script, wird aus einer swf geladen*/
@font-face{
src: url("fonts/fonts_3.swf");
fontFamily: "Segoe Script";
}
/*--------------------------------*/
/*CSS Styles, fontFamily name von der schrift muss in CSS sein*/
/*diese Schriftart wird aus Sytem geladen!*/
s|Label {
fontFamily: "Courier New";
fontSize: 24;
}
/*diese Schriftart wird aus unserem Source ordner geladen, siehe oben.*/
.text_2 {
fontFamily: "Myriad Pro";
fontSize: 24;
}
.text_3 {
fontFamily: "Tahoma";
fontSize: 24;
}
.text_4 {
fontFamily: "Segoe Script";
fontSize: 24;
}
</fx:Style>
<fx:Declarations>
<!-- Platzieren Sie nichtvisuelle Elemente (z.*B. Dienste, Wertobjekte) hier -->
</fx:Declarations>
<s:Label x="196" y="380" text="Beschriftung 123
Peter ABCDEFGH" width="240" height="81" styleName="text_4"/>
<s:Label x="196" y="300" text="Beschriftung 123
Peter ABCDEFGH" width="240" height="81" styleName="text_3"/>
<s:Label x="196" y="208" text="Beschriftung 123
Peter ABCDEFGH" width="240" height="81" styleName="text_2"/>
<s:Label x="196" y="115" text="Peter ABCDEFGHIJKLMNOP" width="302" height="88" />
</s:WindowedApplication>
ich wäre dankbar für jegliche Hilfe.
Gruß
Olaf