Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Yes it is correct. But it doesn't work...The whole text is displayed
correctly in the right font but euro signs are just leftout.
while plain static text displays the euro sign perfectly..





On 6/4/07, Jason Law <[EMAIL PROTECTED]> wrote:


Tom,

"35 Helvetica Thin" is the link identifier on the font symbol correct?
That should work


-Original Message-
From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 11:16 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Special font issue

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50,
500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:
>
> Hi Ton,
> What character sets are you embedding? Have you tried including the euro
> sign in the field next to the autofill button?
>
> Karina
>
> > -Original Message-
> > From: Tom Huynen [mailto:[EMAIL PROTECTED]
> > Sent: 04 June 2007 14:54
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: [Flashcoders] Special font issue
> >
> > Hi list,
> >
> > I'm developing a narrowcase project.
> > The euro sign (€) in the external xml data is encoded in this
> > way: "€"
> >
> > I use Helvetica Light to display the content. It can display
> > the eurosign perfectly when I create a static text field inb the fla.
> > However soon as I embed the font and try to create a
> > textfield dynamicly the eurosign disapears.
> >
> > The strange thing is that it works with some other fonts but
> > not with the one I need.
> >
> > I tried google all day but my problem isn't solved yet.
> >
> > Anybody some advice for me?
> >
> > Regards,
> >
> > Tom
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com http://training.figleaf.com
> >
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is
addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended
recipient,
or an employee or agent responsible for delivering the message to the
intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Jason Law
Tom,

"35 Helvetica Thin" is the link identifier on the font symbol correct? That 
should work


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 11:16 AM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] Special font issue

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50, 500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:
>
> Hi Ton,
> What character sets are you embedding? Have you tried including the euro
> sign in the field next to the autofill button?
>
> Karina
>
> > -Original Message-
> > From: Tom Huynen [mailto:[EMAIL PROTECTED]
> > Sent: 04 June 2007 14:54
> > To: flashcoders@chattyfig.figleaf.com
> > Subject: [Flashcoders] Special font issue
> >
> > Hi list,
> >
> > I'm developing a narrowcase project.
> > The euro sign (€) in the external xml data is encoded in this
> > way: "€"
> >
> > I use Helvetica Light to display the content. It can display
> > the eurosign perfectly when I create a static text field inb the fla.
> > However soon as I embed the font and try to create a
> > textfield dynamicly the eurosign disapears.
> >
> > The strange thing is that it works with some other fonts but
> > not with the one I need.
> >
> > I tried google all day but my problem isn't solved yet.
> >
> > Anybody some advice for me?
> >
> > Regards,
> >
> > Tom
> > ___
> > Flashcoders@chattyfig.figleaf.com
> > To change your subscription options or search the archive:
> > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> >
> > Brought to you by Fig Leaf Software
> > Premier Authorized Adobe Consulting and Training
> > http://www.figleaf.com http://training.figleaf.com
> >
>
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended recipient,
or an employee or agent responsible for delivering the message to the intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hi Karina,

I tried two ways of embedding:

- Embedding trough the library making the font a library symbol.
- Embedding by creating a dynamic textfield (all character sets and
including the eurosign)

the first one goes by the code below.
Both don't seem to work

Tom

var root_p:MovieClip = _root;

var tf:TextFormat = new TextFormat();
tf.size = 22;
tf.color = 0x00;
tf.font = "35 Helvetica Thin";


var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50, 500,
500);
test_txt.border = true;
test_txt.embedFonts = true;
test_txt.html = true;
test_txt.htmlText = "testing" +  "€" + "ok";
test_txt.setTextFormat(tf);





On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote:


Hi Ton,
What character sets are you embedding? Have you tried including the euro
sign in the field next to the autofill button?

Karina

> -Original Message-
> From: Tom Huynen [mailto:[EMAIL PROTECTED]
> Sent: 04 June 2007 14:54
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Special font issue
>
> Hi list,
>
> I'm developing a narrowcase project.
> The euro sign (€) in the external xml data is encoded in this
> way: "€"
>
> I use Helvetica Light to display the content. It can display
> the eurosign perfectly when I create a static text field inb the fla.
> However soon as I embed the font and try to create a
> textfield dynamicly the eurosign disapears.
>
> The strange thing is that it works with some other fonts but
> not with the one I need.
>
> I tried google all day but my problem isn't solved yet.
>
> Anybody some advice for me?
>
> Regards,
>
> Tom
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com http://training.figleaf.com
>

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hello Jason,

Thanks for your reaction.
I do embed the font as a library item. This normally always works. Today I
discoverd however that some fonts to display the eurosign and some don't.
The logical explanation would be that the sign isn't supported for those
specific fonts.

However, when I try to type the sign in the fla in a static form the font
does support the sign.

Any idea about  this situation?

Regards,

Tom


On 6/4/07, Jason Law <[EMAIL PROTECTED]> wrote:


You may need to add the font as a library item. When creating the text
field dynamically it has issues with embedding special characters in my own
tests.


-Original Message-
From: [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 9:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Special font issue

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way:
"€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly
the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is
addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended
recipient,
or an employee or agent responsible for delivering the message to the
intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Karina Steffens
Hi Ton,
What character sets are you embedding? Have you tried including the euro sign 
in the field next to the autofill button?

Karina

> -Original Message-
> From: Tom Huynen [mailto:[EMAIL PROTECTED] 
> Sent: 04 June 2007 14:54
> To: flashcoders@chattyfig.figleaf.com
> Subject: [Flashcoders] Special font issue
> 
> Hi list,
> 
> I'm developing a narrowcase project.
> The euro sign (€) in the external xml data is encoded in this 
> way: "€"
> 
> I use Helvetica Light to display the content. It can display 
> the eurosign perfectly when I create a static text field inb the fla.
> However soon as I embed the font and try to create a 
> textfield dynamicly the eurosign disapears.
> 
> The strange thing is that it works with some other fonts but 
> not with the one I need.
> 
> I tried google all day but my problem isn't solved yet.
> 
> Anybody some advice for me?
> 
> Regards,
> 
> Tom
> ___
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training 
> http://www.figleaf.com http://training.figleaf.com
> 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Special font issue

2007-06-04 Thread Jason Law
You may need to add the font as a library item. When creating the text field 
dynamically it has issues with embedding special characters in my own tests.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen
Sent: Monday, June 04, 2007 9:54 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Special font issue

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way: "€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This email is intended only for the person or entity to which it is addressed
and may contain information that is privileged, confidential or otherwise
protected from disclosure. Dissemination, distribution or copying of this
email or the information herein by anyone other than the intended recipient,
or an employee or agent responsible for delivering the message to the intended
recipient, is prohibited. If you have received this email in error, please
immediately notify us by calling our Help Desk at (415) 581-5552 or
by e-mailing us at [EMAIL PROTECTED]

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

[Flashcoders] Special font issue

2007-06-04 Thread Tom Huynen

Hi list,

I'm developing a narrowcase project.
The euro sign (€) in the external xml data is encoded in this way: "€"

I use Helvetica Light to display the content. It can display the eurosign
perfectly when I create a static text field inb the fla.
However soon as I embed the font and try to create a textfield dynamicly the
eurosign disapears.

The strange thing is that it works with some other fonts but not with the
one I need.

I tried google all day but my problem isn't solved yet.

Anybody some advice for me?

Regards,

Tom
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com