[flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-05 Thread bronzemug



Ye. Thanks! you are exactly right. The package name for these java 
classes in the swfkit.jar is now flash.fonts

--- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote:

 I don't remember if this is a Beta 3 change or not, but try this 
instead:
 
 managers
 manager-classflash.fonts.JREFontManager/manager-class
 manager-classflash.fonts.BatikFontManager/manager-
class
 /managers
 
 Hth,
 
 Matt Horn
 Flex docs 
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
  Sent: Thursday, June 01, 2006 5:36 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Re: No FontManager provided after 
  migrating to Beta 3
  
  Alex, thanks for answering ...
  
  I am still getting the error.
  I made the change
  :
  managers
  manager-
  classmacromedia.fonts.JREFontManager/manager-class
  manager-
classmacromedia.fonts.BatikManager/manager-
  class
  /managers
  
  
  
  
  I also simply modified one of the samples applications from the 
Beta
  3 distribution: main.css in sqladmin:
  
  Here is css I added:
  
  @font-face { 
   font-family:Avenir 85 Heavy Bold;
   /* This is only a bold weight font */
   src:url(Avenir_LT_85_Heavy.ttf);
   fontWeight:bold;
   unicode-range:
  U+0020-U+002F, /*!#$%
  (amp)'()*+,-./ */
  U+0030-U+0039, /* 
   0123456789  
   */
  U+003A-U+0040, /*  :;(gt)
  =(lt)?
   */
  U+0041-U+005A, /*  
   ABCDEFGHIJKLMNOPQRSTUVWXY*/
  U+005B-U+0060, /*   [\]^_ 
  */
  U+0061-U+007A, /*  
   abcdefghijklmnopqrstuvwxy*/
  U+2013-U+2022,/*, *//*   –— 
  =`'‚ „ †‡  */
  U+00A9-U+00AA, /* copyright */
  U+007E
  /*U+007B-U+007E*/; /*   {|}
  
   */
  }
  
  I also added the TTF file to the same directory as the 
  main.css file As I mentioned ... this worked fine in Beta 2
  
  
  --- In flexcoders@yahoogroups.com, Alex Uhlmann auhlmann@
  wrote:
  
   Yes, that's a bug in the default flex-config.xml. Change
   
   managers
   manager-
  classmacromedia.fonts.JREFontManager/manager-class
   manager-
  classmacromedia.fonts.BatikFontManager/manager-class
   /managers
   
   To
   
   managers
   manager-
  classmacromedia.fonts.JREFontManager/manager-class
   manager-
  classmacromedia.fonts.BatikManager/manager-class
   /managers
   
   
   (without the Font)
   
   In compilerfonts and it should work. 
   
   
   Best,
   Alex
   
   Alex Uhlmann
   Consultant (Rich Internet Applications) Adobe Consulting 
  Westpoint, 4 
   Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
   p: +44 (0) 131 338 6969
   m: +44 (0) 7917 428 951
   auhlmann@ 
   
   
   -Original Message-
   From: flexcoders@yahoogroups.com
  [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
   Sent: 01 June 2006 20:08
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] No FontManager provided after migrating 
to
  Beta 3
   
   I migrated my Beta2 code base which is using some embedded ttf
  fonts to
   Beta3 and suddenly started getting
   
   exception during transcoding: No FontManager provided. Cannot
  build font.
   
   I am using the standard flex-config.xml that comes with Beta3
  distribution. 
   
   Is there something I am missing?
   
   
   
   
   
   
    Yahoo! Groups Sponsor -
---
  ~-- Everything you need is one click away.  Make Yahoo! your 
  home page now.
   http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
   

  ~- 
   
   --
   Flexcoders Mailing List
   FAQ: 
  http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
   Search Archives: http://www.mail-archive.com/flexcoders%
  40yahoogroups.com
   Yahoo! Groups Links
  
  
  
  
  
  
  
  
  
  
   Yahoo! Groups Sponsor 
  ~-- You can search right from your 
  browser? It's easy and it's free. See how.
  http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
  --
  --~- 
  
  --
  Flexcoders Mailing List
  FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: 
  http://www.mail-archive.com/flexcoders%40yahoogroups.com
  Yahoo! Groups Links
  
  
  
  
  
  
 














--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice

RE: [flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-03 Thread Matt Horn
I don’t remember if this is a Beta 3 change or not, but try this instead:

managers
  manager-classflash.fonts.JREFontManager/manager-class
  manager-classflash.fonts.BatikFontManager/manager-class
/managers

Hth,

Matt Horn
Flex docs 

 -Original Message-
 From: flexcoders@yahoogroups.com 
 [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
 Sent: Thursday, June 01, 2006 5:36 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Re: No FontManager provided after 
 migrating to Beta 3
 
 Alex, thanks for answering ...
 
 I am still getting the error.
 I made the change
 :
 managers
 manager-
 classmacromedia.fonts.JREFontManager/manager-class
 manager-classmacromedia.fonts.BatikManager/manager-
 class
 /managers
 
 
 
 
 I also simply modified one of the samples applications from the Beta
 3 distribution: main.css in sqladmin:
 
 Here is css I added:
 
 @font-face { 
   font-family:Avenir 85 Heavy Bold;
   /* This is only a bold weight font */
   src:url(Avenir_LT_85_Heavy.ttf);
   fontWeight:bold;
   unicode-range:
   U+0020-U+002F, /*!#$%
 (amp)'()*+,-./*/
   U+0030-U+0039, /*   
   0123456789  
   */
   U+003A-U+0040, /*   :;(gt)
 =(lt)?
   */
   U+0041-U+005A, /*   
   ABCDEFGHIJKLMNOPQRSTUVWXY   */
   U+005B-U+0060, /*   [\]^_ 
   */
   U+0061-U+007A, /*   
   abcdefghijklmnopqrstuvwxy   */
   U+2013-U+2022,/*, *//*  –—  
 =`'‚ „ †‡   */
   U+00A9-U+00AA, /* copyright */
   U+007E
   /*U+007B-U+007E*/; /*   {|}
   
   */
 }
 
 I also added the TTF file to the same directory as the 
 main.css file As I mentioned ... this worked fine in Beta 2
 
 
 --- In flexcoders@yahoogroups.com, Alex Uhlmann [EMAIL PROTECTED]
 wrote:
 
  Yes, that's a bug in the default flex-config.xml. Change
  
  managers
  manager-
 classmacromedia.fonts.JREFontManager/manager-class
  manager-
 classmacromedia.fonts.BatikFontManager/manager-class
  /managers
  
  To
  
  managers
  manager-
 classmacromedia.fonts.JREFontManager/manager-class
  manager-
 classmacromedia.fonts.BatikManager/manager-class
  /managers
  
  
  (without the Font)
  
  In compilerfonts and it should work. 
  
  
  Best,
  Alex
  
  Alex Uhlmann
  Consultant (Rich Internet Applications) Adobe Consulting 
 Westpoint, 4 
  Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
  p: +44 (0) 131 338 6969
  m: +44 (0) 7917 428 951
  [EMAIL PROTECTED] 
  
  
  -Original Message-
  From: flexcoders@yahoogroups.com
 [mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
  Sent: 01 June 2006 20:08
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] No FontManager provided after migrating to
 Beta 3
  
  I migrated my Beta2 code base which is using some embedded ttf
 fonts to
  Beta3 and suddenly started getting
  
  exception during transcoding: No FontManager provided. Cannot
 build font.
  
  I am using the standard flex-config.xml that comes with Beta3
 distribution. 
  
  Is there something I am missing?
  
  
  
  
  
  
   Yahoo! Groups Sponsor 
 ~-- Everything you need is one click away.  Make Yahoo! your 
 home page now.
  http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
  
 ~- 
  
  --
  Flexcoders Mailing List
  FAQ: 
 http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
  Search Archives: http://www.mail-archive.com/flexcoders%
 40yahoogroups.com
  Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
 ~-- You can search right from your 
 browser? It's easy and it's free.  See how.
 http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/nhFolB/TM
 --
 --~- 
 
 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: 
 http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links
 
 
 
  
 
 
 


 Yahoo! Groups Sponsor ~-- 
Protect your PC from spy ware with award winning anti

[flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-02 Thread bronzemug



Fixed --- flash.fonts should replace macromedia.fonts in the 
config

swfkit.jar contains the font manager classes
They are BatikFontManager and JREFontManager 
*BUT* they are now contained in the package flash.fonts.

The flex-config.xml file should be changed to read 

 managers
 manager-classflash.fonts.JREFontManager/manager-class
 manager-classflash.fonts.BatikFontManager/manager-class
 /managers

using flash.fonts instead of macromedia.fonts.

[I am suprised no one has come across this before]



--- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] 
wrote:

 One correction, I think the class should still be called 
BatikFontManager, not BatikManager.
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of Alex Uhlmann
 Sent: Thursday, June 01, 2006 4:35 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] No FontManager provided after migrating 
to Beta 3
 
 Yes, that's a bug in the default flex-config.xml. Change 
 
 managers
 manager-
classmacromedia.fonts.JREFontManager/manager-class
 manager-
classmacromedia.fonts.BatikFontManager/manager-class
 /managers
 
 To
 
 managers
 manager-
classmacromedia.fonts.JREFontManager/manager-class
 manager-
classmacromedia.fonts.BatikManager/manager-class
 /managers
 
 
 (without the Font)
 
 In compilerfonts and it should work. 
 
 
 Best,
 Alex
 
 Alex Uhlmann
 Consultant (Rich Internet Applications)
 Adobe Consulting
 Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
 p: +44 (0) 131 338 6969
 m: +44 (0) 7917 428 951
 [EMAIL PROTECTED] 
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
 Sent: 01 June 2006 20:08
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] No FontManager provided after migrating to 
Beta 3
 
 I migrated my Beta2 code base which is using some embedded ttf 
fonts to
 Beta3 and suddenly started getting 
 
 exception during transcoding: No FontManager provided. Cannot 
build font.
 
 I am using the standard flex-config.xml that comes with Beta3 
distribution. 
 
 Is there something I am missing?
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
~-- Everything you need is one click away.  Make Yahoo! your home 
page now.
 http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
 
~- 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com 
 Yahoo! Groups Links












--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Re: No FontManager provided after migrating to Beta 3

2006-06-01 Thread bronzemug



Alex, thanks for answering ...

I am still getting the error.
I made the change
:
 managers
 manager-
classmacromedia.fonts.JREFontManager/manager-class
 manager-classmacromedia.fonts.BatikManager/manager-
class
 /managers




I also simply modified one of the samples applications from the Beta 
3 distribution: main.css in sqladmin:

Here is css I added:

@font-face { 
 font-family:Avenir 85 Heavy Bold;
 /* This is only a bold weight font */
 src:url(Avenir_LT_85_Heavy.ttf);
 fontWeight:bold;
 unicode-range:
U+0020-U+002F, /*!#$%
(amp)'()*+,-./ */
U+0030-U+0039, /* 
 0123456789  
 */
U+003A-U+0040, /*  :;(gt)
=(lt)? */
U+0041-U+005A, /*  
 ABCDEFGHIJKLMNOPQRSTUVWXY*/
U+005B-U+0060, /*   [\]^_ 
*/
U+0061-U+007A, /*  
 abcdefghijklmnopqrstuvwxy*/
U+2013-U+2022,/*, *//*   –— 
=`'‚ „ †‡  */
U+00A9-U+00AA, /* copyright */
U+007E
/*U+007B-U+007E*/; /*   {|}

 */
}

I also added the TTF file to the same directory as the main.css file
As I mentioned ... this worked fine in Beta 2


--- In flexcoders@yahoogroups.com, Alex Uhlmann [EMAIL PROTECTED] 
wrote:

 Yes, that's a bug in the default flex-config.xml. Change 
 
 managers
 manager-
classmacromedia.fonts.JREFontManager/manager-class
 manager-
classmacromedia.fonts.BatikFontManager/manager-class
 /managers
 
 To
 
 managers
 manager-
classmacromedia.fonts.JREFontManager/manager-class
 manager-
classmacromedia.fonts.BatikManager/manager-class
 /managers
 
 
 (without the Font)
 
 In compilerfonts and it should work. 
 
 
 Best,
 Alex
 
 Alex Uhlmann
 Consultant (Rich Internet Applications)
 Adobe Consulting
 Westpoint, 4 Redheughs Rigg, South Gyle, Edinburgh, EH12 9DQ, UK
 p: +44 (0) 131 338 6969
 m: +44 (0) 7917 428 951 
 [EMAIL PROTECTED] 
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of bronzemug
 Sent: 01 June 2006 20:08
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] No FontManager provided after migrating to 
Beta 3
 
 I migrated my Beta2 code base which is using some embedded ttf 
fonts to
 Beta3 and suddenly started getting 
 
 exception during transcoding: No FontManager provided. Cannot 
build font.
 
 I am using the standard flex-config.xml that comes with Beta3 
distribution. 
 
 Is there something I am missing?
 
 
 
 
 
 
  Yahoo! Groups Sponsor 
~-- Everything you need is one click away.  Make Yahoo! your home 
page now.
 http://us.click.yahoo.com/AHchtC/4FxNAA/yQLSAA/nhFolB/TM
 
~- 
 
 --
 Flexcoders Mailing List
 FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%
40yahoogroups.com
 Yahoo! Groups Links














--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.