[Flashcoders] Embedded fonts Bug

2010-09-24 Thread Kerry Thompson
Hello all, I thought I was finished with my embedded fonts project last night. Tested it on Firefox, and it worked beautifully, so I shipped it to the client. As I have been testing it this morning, I have been getting an intermittent error. It doesn't seem to be tied to the browser or Flash

RE: [Flashcoders] Embedded fonts Bug

2010-09-24 Thread Keith Reinfeld
- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- boun...@chattyfig.figleaf.com] On Behalf Of Kerry Thompson Sent: Friday, September 24, 2010 2:22 PM To: Flash Coders List Subject: [Flashcoders] Embedded fonts Bug Hello all, I thought I was finished with my embedded fonts

Re: [Flashcoders] Embedded fonts Bug

2010-09-24 Thread Kerry Thompson
Keith Reinfeld wrote: I suggest that you try doing the Font.registerFont(Garam3BoldItalicEmbedded) in your 'embedded font swf'. Load the swf into your 'downloader' then simply use it in your showText(). Thanks, Keith. That's actually one of the many things I have tried, and I end up with

RE: [Flashcoders] Embedded fonts Bug

2010-09-24 Thread Keith Reinfeld
://keithreinfeld.home.comcast.net -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders- boun...@chattyfig.figleaf.com] On Behalf Of Kerry Thompson Sent: Friday, September 24, 2010 4:03 PM To: Flash Coders List Subject: Re: [Flashcoders] Embedded fonts Bug

Re: [Flashcoders] Embedded fonts Bug

2010-09-24 Thread Kerry Thompson
Keith Reinfeld wrote: Have you specified a fontWeight and a fontStyle? [Embed(        source='../fonts/Garamond3/GaramThrBolItaOsF.ttf',        fontName='Garam3BoldItalicEmbedded',        fontWeight='bold',        fontStyle = 'italic',        embedAsCFF='false' )] Yes, I have, and it

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-29 Thread allandt bik-elliott (thefieldcomic.com)
Out of interest try it with a different font - I've had all sorts of problems embedding Arial in the past On 28 Jun 2010 20:34, Bill S. lists...@fo.com wrote: Hi Karl. I did try all combos of arial, Arial, _arial before asking. And the fontname in the ttf itself is Arial. Also, the exact same

[Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-28 Thread Bill S.
Hi Christoffer, thank you for the answer; but adding fontFamily didn't help. [Embed(arial.ttf, fontName=_Arial, fontFamily=_Arial, mimeType='application/x-font')] John -- I tried messing with the flex swc but that didn't do it either -- although I have a feeling that it is related to

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-28 Thread John McCormack
In CS5 Publish settings, ActionScript3, Source path there was already a path set up for ., which I thought would be enough to find the package, but I changed it to the fla's directory C:\Users\John\Desktop\Temp and then it found the font package. I would have expected it to find the saved fla

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-28 Thread Karl DeSaulniers
Try removing the underscore in your font name. In my experience, when embeding fonts, the name of the font in your code must match the font name exactly. cAse SeNsiTiVe. I believe it should be. Arial Not _Arial And if your embedding arial.ttf, it should be arial as the font name. Hth,

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-28 Thread Bill S.
DeSaulniers To: Bill S. ; Flash Coders List Cc: flashcoders@chattyfig.figleaf.com Sent: Monday, June 28, 2010 2:24 PM Subject: Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5? Try removing the underscore in your font name. In my experience, when embeding fonts, the name

[Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-26 Thread Bill S.
One of the frustrating things with CS3 Flash was (contrary to many blogs -- and I believe the docs) that you could not actually [EMBED] fonts. However this worked wonderfully in CS4. But now, in (a fully updated) CS5 I can't seem to get EMBED to work again. The below code is exactly the same

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-26 Thread Christoffer Enedahl
I don't know about cs5, but this thing got me a day ago when I needed to use stysheets and fonts, I had to add fontFamily in the embed tag aswell for the font to show. [Embed(arial.ttf, fontName=_Arial, fontFamily=_Arial, mimeType='application/x-font')] HTH/Christoffer Bill S. skrev: One

Re: [Flashcoders] Embedded Fonts: Works in CS4, Fails in CS5?

2010-06-26 Thread John McCormack
I was trying to do this today and kept getting errors and then came across this: http://forums.adobe.com/thread/441087 It goes on to say: Turns out the packages have been split up at least as early as build 7410 (May/2009) and I was including flex4.swc where the mx classes no longer reside.

Re: [Flashcoders] embedded fonts

2008-04-04 Thread Meinte van't Kruis
as for font strangeness, this page is very helpful; http://www.connectedpixel.com/blog/fonts/embedding On Thu, Apr 3, 2008 at 7:13 PM, Kenneth Kawamoto [EMAIL PROTECTED] wrote: For embedded fonts you can either use the actual font name (as you have discovered it already), or

Re: [Flashcoders] embedded fonts

2008-04-04 Thread Allandt Bik-Elliott (Receptacle)
thanks - that was helpful On 4 Apr 2008, at 10:47, Meinte van't Kruis wrote: as for font strangeness, this page is very helpful; http://www.connectedpixel.com/blog/fonts/embedding On Thu, Apr 3, 2008 at 7:13 PM, Kenneth Kawamoto [EMAIL PROTECTED] wrote: For embedded fonts you can either

[Flashcoders] embedded fonts

2008-04-03 Thread Allandt Bik-Elliott (Receptacle)
wotcha i have a quick query about embedded fonts. I thought that when you used them in the movie, that you should call them by the Class name in the linkage identifier however when I try to do this, my text disappears (i have embedFonts set to true and I've triple checked the names),

Re: [Flashcoders] embedded fonts

2008-04-03 Thread Stuart (FunkDaWeb)
I too have a wierd problem with embeded fonts! When i set embededFont = true; it removes the text! :o( - Original Message - From: Allandt Bik-Elliott (Receptacle) To: flashcoders Sent: Thursday, April 03, 2008 4:50 PM Subject: [Flashcoders] embedded fonts wotcha i have

Re: [Flashcoders] embedded fonts

2008-04-03 Thread Allandt Bik-Elliott (Receptacle)
embededFont = true; it removes the text! :o( - Original Message - From: Allandt Bik-Elliott (Receptacle) To: flashcoders Sent: Thursday, April 03, 2008 4:50 PM Subject: [Flashcoders] embedded fonts wotcha i have a quick query about embedded fonts. I thought that when you

Re: [Flashcoders] embedded fonts

2008-04-03 Thread Kenneth Kawamoto
For embedded fonts you can either use the actual font name (as you have discovered it already), or YourFontClass.fontName Kenneth Kawamoto http://www.materiaprima.co.uk/ Allandt Bik-Elliott (Receptacle) wrote: wotcha i have a quick query about embedded fonts. I thought that when you used

[Flashcoders] embedded fonts yet again

2007-03-17 Thread Elie Zananiri
Hello, I am having a problem with embedded fonts that is a little peculiar and I was wondering if someone knew how to fix it. I have an SWF which uses a custom font that works properly. I created a Font in the library, added it to a TextFormat, set it to the TextField, and there is no

Re: [Flashcoders] embedded fonts yet again

2007-03-17 Thread Glen Pike
Hi, In your font FLA: In the font properties / linkage, do you export for runtime sharing? In your container FLA: Drag the font from the library of the font FLA into your container library - look at the linkage, it should show that it is imported for runtime sharing from

[Flashcoders] Embedded fonts not showing up on Mac

2006-04-24 Thread Danny Kodicek
I've done a bit of Googling on this, but haven't managed to find a definitive answer. Anyone have an idea why our font is not showing up correctly when the movie (played through Director) is viewed on a Mac? Thanks Danny ___

Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Cedric Muller
PROTECTED] On Behalf Of Cedric Muller Sent: 13 December 2005 14:02 To: Flashcoders mailing list Subject: Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me just to be sure, you are speaking of Flash 8 ? did something change (new bugs, new workarounds) into that regard (vs Flash 7

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
Yup doesn't work for me anymore -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cedric Muller Sent: 14 December 2005 09:53 To: Flashcoders mailing list Subject: Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me broken

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-14 Thread Mike Mountain
instances of textboxes using the font. M -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Mountain Sent: 14 December 2005 10:04 To: Flashcoders mailing list Subject: RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me Yup

[Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread lieven.cardoen
Dear colleagues, Apparently it isn't possible to have a textfield with embedded fonts and html. Is this correct and why is this. Don't just tell me it is possible, because I've tested it, and when I embed the font, the html doesn't come true. For instance iblablabla/i doesn't appear.

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread lieven.cardoen
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Gülensoy Sent: dinsdag 13 december 2005 12:34 To: 'Flashcoders mailing list' Subject: AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me even though you dont want to hear it: its possible ;) do you

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread lieven.cardoen
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Gülensoy Sent: dinsdag 13 december 2005 12:34 To: 'Flashcoders mailing list' Subject: AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me even though you dont want to hear it: its possible ;) do you

Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Ian Thomas
No - it's just that as far as Flash embedding is concerned Verdana Italic is _different_ from Verdana. What you need to do is embed both versions of the font - Verdana Italic and Verdana. The easiest way to do that is to stick a dynamic textfield offstage, and put two lines of text in it. Set it

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread lieven.cardoen
:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent: dinsdag 13 december 2005 13:58 To: Flashcoders mailing list Subject: Re: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me No - it's just that as far as Flash embedding is concerned Verdana Italic is _different_ from Verdana. What you

AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Kerem Gülensoy
] Gesendet: Dienstag, 13. Dezember 2005 14:14 An: flashcoders@chattyfig.figleaf.com Betreff: RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me Sorry, it does work. Html wasn't set to true in that off stage textfield. But isn't there a way to embed both versions of font without

AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Kerem Gülensoy
. -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Mike Mountain Gesendet: Dienstag, 13. Dezember 2005 15:11 An: Flashcoders mailing list Betreff: RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me While we're on the subject, my

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Mike Mountain
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Gülensoy Sent: 13 December 2005 14:24 To: 'Flashcoders mailing list' Subject: AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me it still works fine for me...what

AW: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread Kerem Gülensoy
- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Mike Mountain Gesendet: Dienstag, 13. Dezember 2005 15:29 An: Flashcoders mailing list Betreff: RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me -Original Message- From: [EMAIL PROTECTED] [mailto

RE: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me

2005-12-13 Thread lieven.cardoen
: [Flashcoders] Embedded fonts vs. Html : Can anybody enlighten me hmm...works fine here in flash8...i couldnt notice a change in behavior yet... i´m embedding the chars i need in a textfield, putting it on the stage, creating a new one, setting embedfonts to true, applying a textformat and a text

RE: [Flashcoders] Embedded Fonts + HTML

2005-11-04 Thread lieven.cardoen
@chattyfig.figleaf.com Subject: [Flashcoders] Embedded Fonts + HTML Does this work ? In my project it doesn't seem to work... Flash7MX Update 7.2 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] Embedded Fonts + HTML

2005-11-04 Thread Pål Østerud
One workaround is this: 1. Place a textfield offstage in frame 1. 2. Set it to dynamic text, html-enabled, and embed the chars you need 3. Type some text in it with the correct font, if you need bold you should also type some bold text in it. Best regards, Pål Østerud Maybe I need to be a