Hi,
Sorry this bounced, so my emails will be out of order, trying again.
> Re EmbedFont : Actually it's not that important. We use it to get special
> characters
In that case something like this may work:
<js:Application ... xmlns:fonts="fonts.*”>
<js:valuesImpl>
<js:SimpleCSSValuesImpl id="vi" />
</js:valuesImpl>
<js:beads>
<fonts:Catamaran />
</js:beads>
...
In fonts/Catamara.as
package fonts {
import org.apache.flex.core.BeadViewBase;
public class Catamaran extends BeadViewBase {
/**
* <inject_html>
* <link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Catamaran:400,500,600,700">
* </inject_html>
*/
public function Catamaran() {
super();
}
}
}
Thanks,
Justin