[Flashcoders] JSFL dynamic textfield antialiasing question...

2009-11-17 Thread Chris Foster
Hi, I'm using JSFL to modify a bunch of FLAs created by a designer. I need to change the antialiasing on a large number of textfields from 'bitmap' to 'antialias for animation' but the only parameters I can see are 'standard', 'device', 'bitmap', 'advanced' and 'customThicknessSharpness'.

Re: [Flashcoders] JSFL dynamic textfield antialiasing question...

2009-11-17 Thread jared stanley
hmm good question - i don't know if that's accessible from jsfl. you could probably just loop through everything on the stage, and if it's a text field then select it - that dropdown will affect all selected textfields. not exactly what you're looking for though, maybe someone else has a better

Re: [Flashcoders] JSFL dynamic textfield antialiasing question...

2009-11-17 Thread Latcho
Did a quick test. I think Stanley is wright: not possible. My ASV swf decompiler creates JSFL to reconstuct a FLA. I created a bunch of different textfields, compiled to swf and decompiled with ASV. Got ASV creating JSFL rebuild script for recreating a FLA. For antialias for readability fields

RE: [Flashcoders] JSFL dynamic textfield antialiasing question...

2009-11-17 Thread Chris Foster
: [Flashcoders] JSFL dynamic textfield antialiasing question... Did a quick test. I think Stanley is wright: not possible. My ASV swf decompiler creates JSFL to reconstuct a FLA. I created a bunch of different textfields, compiled to swf and decompiled with ASV. Got ASV creating JSFL rebuild script

Re: [Flashcoders] JSFL dynamic textfield antialiasing question...

2009-11-17 Thread Latcho
As found in http://www.scribd.com/doc/3939992/Flash-Javascript-API My best guess is that to represent antialias for animation you would use text.fontRenderingMode - standard text.fontRenderingMode - static Latcho Chris Foster wrote: Hi, I'm using JSFL to modify a bunch of FLAs created by