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 solution.

jared



On Tue, Nov 17, 2009 at 6:04 PM, Chris Foster
cfos...@catalystinteractive.com.au wrote:
 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'.

 'advanced' changes the textfield to 'antialias-for-reading', which I
 don't want.

 Anyone know how to change this to 'antialias for animation'?

 Thanks,
 C:




 Chris Foster
 Multimedia Team Leader
 cfos...@catalystinteractive.com.au
 chris.fos...@kbr.com
 Phone: +612 6233 8900 - Fax: +612 6233 8947 - Mobile: +61 414 394 524

 Catalyst Interactive Pty Ltd
 www.catalystinteractive.com.au
 8 Townsville Street Fyshwick ACT 2609
 PO Box 722 Fyshwick 2609

 a KBR company

 ---

 IMPORTANT: The Information contained in this electronic message is
 confidential and intended only for the named recipient(s). Any review,
 re-transmission, disclosure, dissemination or other use of, or taking of
 any action in reliance upon, this information by persons or entities
 other than the intended recipient is prohibited.

 This e-mail, including any attached files, may contain confidential and 
 privileged information for the sole use of the intended recipient.  Any 
 review, use, distribution, or disclosure by others is strictly prohibited.  
 If you are not the intended recipient (or authorized to receive information 
 for the intended recipient), please contact the sender by reply e-mail and 
 delete all copies of this message.

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 it creates JSFL code that creates 
the textfield from scratch.
For antailias for animation textfields it creates a new symbol-SWF of 
the textfield graphic and ads that as a symbol directly into the library;
Just to complement Stanley's idea that it might not be in the power of 
JSFL otherwise ASV would just implement that 100% scriptwise, loosing 
the additional imported SWF's.

Latcho


jared stanley wrote:

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 solution.

jared



On Tue, Nov 17, 2009 at 6:04 PM, Chris Foster
cfos...@catalystinteractive.com.au wrote:
  

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'.

'advanced' changes the textfield to 'antialias-for-reading', which I
don't want.

Anyone know how to change this to 'antialias for animation'?

Thanks,
C:




Chris Foster
Multimedia Team Leader
cfos...@catalystinteractive.com.au
chris.fos...@kbr.com
Phone: +612 6233 8900 - Fax: +612 6233 8947 - Mobile: +61 414 394 524

Catalyst Interactive Pty Ltd
www.catalystinteractive.com.au
8 Townsville Street Fyshwick ACT 2609
PO Box 722 Fyshwick 2609

a KBR company

---

IMPORTANT: The Information contained in this electronic message is
confidential and intended only for the named recipient(s). Any review,
re-transmission, disclosure, dissemination or other use of, or taking of
any action in reliance upon, this information by persons or entities
other than the intended recipient is prohibited.

This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient.  Any review, 
use, distribution, or disclosure by others is strictly prohibited.  If you are 
not the intended recipient (or authorized to receive information for the 
intended recipient), please contact the sender by reply e-mail and delete all 
copies of this message.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders




___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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

2009-11-17 Thread Chris Foster
Thanks guys, that's confirmed my suspicions.

Much appreciated,
C:



-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Latcho
Sent: Wednesday, 18 November 2009 10:47 AM
To: Flash Coders List
Subject: Re: [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 for recreating a FLA.
For antialias for readability fields it creates JSFL code that creates
the textfield from scratch.
For antailias for animation textfields it creates a new symbol-SWF of
the textfield graphic and ads that as a symbol directly into the
library; Just to complement Stanley's idea that it might not be in the
power of JSFL otherwise ASV would just implement that 100% scriptwise,
loosing the additional imported SWF's.
Latcho


jared stanley wrote:
 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 solution.

 jared



 On Tue, Nov 17, 2009 at 6:04 PM, Chris Foster 
 cfos...@catalystinteractive.com.au wrote:
   
 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'.

 'advanced' changes the textfield to 'antialias-for-reading', which I 
 don't want.

 Anyone know how to change this to 'antialias for animation'?

 Thanks,
 C:




 Chris Foster
 Multimedia Team Leader
 cfos...@catalystinteractive.com.au
 chris.fos...@kbr.com
 Phone: +612 6233 8900 - Fax: +612 6233 8947 - Mobile: +61 414 394 524

 Catalyst Interactive Pty Ltd
 www.catalystinteractive.com.au
 8 Townsville Street Fyshwick ACT 2609 PO Box 722 Fyshwick 2609

 a KBR company

 ---

 IMPORTANT: The Information contained in this electronic message is 
 confidential and intended only for the named recipient(s). Any 
 review, re-transmission, disclosure, dissemination or other use of, 
 or taking of any action in reliance upon, this information by persons

 or entities other than the intended recipient is prohibited.

 This e-mail, including any attached files, may contain confidential
and privileged information for the sole use of the intended recipient.
Any review, use, distribution, or disclosure by others is strictly
prohibited.  If you are not the intended recipient (or authorized to
receive information for the intended recipient), please contact the
sender by reply e-mail and delete all copies of this message.

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

   

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 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'.

'advanced' changes the textfield to 'antialias-for-reading', which I
don't want. 


Anyone know how to change this to 'antialias for animation'?

Thanks,
C:


 


Chris Foster
Multimedia Team Leader
cfos...@catalystinteractive.com.au
chris.fos...@kbr.com
Phone: +612 6233 8900 - Fax: +612 6233 8947 - Mobile: +61 414 394 524

Catalyst Interactive Pty Ltd
www.catalystinteractive.com.au 
8 Townsville Street Fyshwick ACT 2609

PO Box 722 Fyshwick 2609

a KBR company

---

IMPORTANT: The Information contained in this electronic message is
confidential and intended only for the named recipient(s). Any review,
re-transmission, disclosure, dissemination or other use of, or taking of
any action in reliance upon, this information by persons or entities
other than the intended recipient is prohibited.

This e-mail, including any attached files, may contain confidential and 
privileged information for the sole use of the intended recipient.  Any review, 
use, distribution, or disclosure by others is strictly prohibited.  If you are 
not the intended recipient (or authorized to receive information for the 
intended recipient), please contact the sender by reply e-mail and delete all 
copies of this message.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

  


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders