RE: [flexcoders] mx:Link component

2005-02-09 Thread Matt Chotin
] Subject: Re: [flexcoders] mx:Link component It's because the Link component's label is not html enabled. HTML escapes like your seeing will render in an HTML enabled TextArea for instance. I've tried all kind of hacks I can think of; none work. my_link.labelPath.html = true

Re: [flexcoders] mx:Link component

2005-02-09 Thread Manish Jethani
JesterXL wrote: It's because the Link component's label is not html enabled. Why, this seems to work fine for me: mx:Link id=link / mx:Button label=Set Link Label click=setLinkLabel() / mx:Script function setLinkLabel() { link.label = Manishapos;s link; } /mx:Script I think the problem is

RE: [flexcoders] mx:Link component

2005-02-09 Thread Robert Brueckmann
] Sent: Wednesday, February 09, 2005 3:12 AM To: [EMAIL PROTECTED] Subject: Re: [flexcoders] mx:Link component JesterXL wrote: It's because the Link component's labelis not html enabled. Why, this seems to work fine for me: mx:Link id=link / mx:Button label=Set Link Label click=setLinkLabel

RE: [flexcoders] mx:Link component

2005-02-09 Thread Matt Chotin
, 2005 9:10 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] mx:Link component Guysthe problem with my input is its coming in from the RSS feed like this: JPMorgans Vice President blah blah blah as the title of the article and when Iset that title string to the value of the mx:Link

Re: [flexcoders] mx:Link component

2005-02-08 Thread JesterXL
It's because the Link component's label isnot html enabled. HTML escapes like your seeing will render in an HTML enabled TextArea for instance. I've tried all kind of hacks I can think of; none work. my_link.labelPath.html = true; my_link.labelPath.htmlText Throwing it in a TextArea, but