Re: [Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-29 Thread Jiri
So, you could do something like this in an embed tag [Embed(source=Arial-Rounded-MT-Bold.ttf, fontFamily=ArialRoundedBold, fontWeight=bold, mimeType=application/x-font-truetype, unicodeRange=getCodeRange()] Will try it. Cheers for replying. Sidney de Koning wrote: Hi Jiri, Why do you

Re: [Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-29 Thread Jiri
Thanx, i will look into that. Jiri Ian Thomas wrote: It does accept conditionals, sort of, using the mxmlc -define tag. I blogged about it somewhere (hunts around). Aha! http://code.awenmedia.com/node/34 HTH, Ian On Tue, Apr 28, 2009 at 8:41 PM, Merrill, Jason

[Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-28 Thread Jiri
Hello list, i was wondering if it is possible to set a conditional statement in the EMBED tag. I would like to set the unicode range based on an id. Here is the class i have now: package { import flash.display.Sprite; public class ArialRoundedBoldFont extends Sprite

Re: [Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-28 Thread Sidney de Koning
Hi Jiri, Why do you want to do that conditional there? Cant you call a var? Then in your main entry class you set that var depending on the lang you get in. Idea? Or if you work with some sort of MVC ( Model View Controller ) architecture you could do that conditional in your Model and in

RE: [Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-28 Thread Merrill, Jason
I don't believe you can do conditionals with [Embed] statements. Those are compile-time directives for the compiler, not runtime player logic like an if/else. If the compiler accepts conditionals of some sort, I am not aware of it and don't think it's documented anywhere. I could be wrong, but I

Re: [Flashcoders] Conditional statement in [Embed(source=... tag

2009-04-28 Thread Ian Thomas
It does accept conditionals, sort of, using the mxmlc -define tag. I blogged about it somewhere (hunts around). Aha! http://code.awenmedia.com/node/34 HTH, Ian On Tue, Apr 28, 2009 at 8:41 PM, Merrill, Jason jason.merr...@bankofamerica.com wrote: I don't believe you can do