RE: [flexcoders] Rich Text Editor and XML

2009-09-12 Thread Tracy Spratt
Does this:

tr.color = "red";

work in general?

 

Tracy Spratt,

Lariat Services, development services available

  _  

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of stldvd
Sent: Saturday, September 12, 2009 4:33 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich Text Editor and XML

 

  

Let me try rephrasing my earlier post and see if I can get a response:

I've got a RTE called outRTE into which I'm loading XML. I need to act
conditionally on the XML, so I've got to use a for-each-in loop to go
through it. 

for each (var item:XML in xData.Content.P.*) {

var textToColor:String = item.toString();
outRTE.textArea.text += item.toString();
var tr:TextRange = new TextRange(outRTE,false, 2, 5);
tr.color = "red";
}

I can see that the item data is coming in OK, but the coloring of the text
just doesn't happen. 

Can anyone see why?

Thanks,

David





Re: [flexcoders] Rich text editor customization

2009-01-31 Thread Igor Costa
Mayank

You can read it from here a solution, don't know if fits on your needs.


http://www.igorcosta.org/?p=217


Regards
Igor Costa


On Thu, Dec 18, 2008 at 2:35 AM, Mayank Vora  wrote:

>
> Hi,
>
> I wanted to know if there is a way to embed images using Rich Text
> Editor. Has anyone tried customizing RTE to embed html images.
>
> Regards,
>
> Mayank
>
>  
>



-- 

Igor Costa
www.igorcosta.com
www.igorcosta.org


RE: [flexcoders] Rich text editor customization

2008-12-19 Thread Joel Carras
Hi Mayank,

D is correct. The RTE extends Panel and is written in MXML.

 

Look at src\mx\controls\RichTextEditor.mxml in the SDK. You could put
the TextArea control inside of RichTextEditor.mxml in a Canvas. Then
after line 312 of RichTextEditor.mxml (in the commitProperties). You
could parse the entered text for html image tags and add an Image
component to the Canvas control that contains your TextArea. You will
need to think about how you want to position the Image components added.

 

Cheers,

 

Joel Carras

Cynergy Systems

 

From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On
Behalf Of Derrick Anderson
Sent: Thursday, December 18, 2008 3:24 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Rich text editor customization

 

the RTE is a Panel w/ TextArea written in MXML, so open up the source
and see how it functions.  Specifically, the setTextStyles and
getTextStyles functions- 

I have not customized it for images, but Image is a supported tag in the
htmlText property.

d.

On Wed, Dec 17, 2008 at 11:35 PM, Mayank Vora 
wrote:


Hi,

I wanted to know if there is a way to embed images using Rich Text
Editor. Has anyone tried customizing RTE to embed html images.

Regards,

Mayank

 

 



Re: [flexcoders] Rich text editor customization

2008-12-18 Thread Derrick Anderson
the RTE is a Panel w/ TextArea written in MXML, so open up the source and
see how it functions.  Specifically, the setTextStyles and getTextStyles
functions-

I have not customized it for images, but Image is a supported tag in the
htmlText property.

d.

On Wed, Dec 17, 2008 at 11:35 PM, Mayank Vora  wrote:

>
> Hi,
>
> I wanted to know if there is a way to embed images using Rich Text
> Editor. Has anyone tried customizing RTE to embed html images.
>
> Regards,
>
> Mayank
>
>  
>


Re: [flexcoders] Rich Text Editor Problem

2008-09-29 Thread Daniel Freiman
Text components cannot use embeded and non-embeded fonts at the same time.
I'm not sure as to the details of what's going on in your case, but this
could be at the root of the problem.

- Daniel Freiman

On Mon, Sep 29, 2008 at 6:47 AM, jainleena82 <[EMAIL PROTECTED]> wrote:

>   Hi,
>
> I am using a Rich Text Editor.My problem is that it is taking the font
> as Arial Embedded from the CSS.And When i try to change the font ,the
> text inside it disappears,the focus goes off from the RTE.
>
> How can i do away with this issue?If i comment out the css everything
> works fine.'
>
> Thanks and Regards,
> Leena Jain
>
>  
>


Re: [flexcoders] Rich Text Editor Problem

2008-09-29 Thread jitendra jain
If possible, please paste some code ..

 Thanks,

with Regards,
Jitendra Jain





- Original Message 
From: jainleena82 <[EMAIL PROTECTED]>
To: flexcoders@yahoogroups.com
Sent: Monday, 29 September, 2008 4:17:03 PM
Subject: [flexcoders] Rich Text Editor Problem


Hi,

I am using a Rich Text Editor.My problem is that it is taking the font 
as Arial Embedded from the CSS.And When i try to change the font ,the 
text inside it disappears,the focus goes off from the RTE.

How can i do away with this issue?If i comment out the css everything 
works fine.'

Thanks and Regards,
Leena Jain




  Unlimited freedom, unlimited storage. Get it now, on 
http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html/

Re: [flexcoders] Rich text editor

2008-09-11 Thread Abdul Razack
ya u can remove the panel try with this code and gothorugh this website "
blog.flexexamples.com "





On Thu, Sep 11, 2008 at 9:24 AM, shelle.maffe <[EMAIL PROTECTED]>wrote:

>   Hi There
>
> I am fresh to flex development. I am trying to use the rich text
> editor, and want to remove the panel around the textarea and also move
> all the buttons above the text editor. Can someone describe to how I
> can achieve this?
>
>  
>



-- 
Sunny Bhai ka Mail hai Tikh se Padeye warna apne health ke liya tikh nahi
hoga

Abdul Razack
Web Designer and Developer
Contact No : 9391180165


RE: [flexcoders] Rich Text Editor

2008-04-22 Thread Alex Harui
This is your third thread all about the same thing.  RichTextEditor is
an mxml file.  Copy it and look inside.  There isn't much to it, and the
piece you want to modify is when and where it sets defaultTextFormat on
the internal textfield.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of grimmwerks
Sent: Tuesday, April 22, 2008 5:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich Text Editor

 

How does the rich text editor GET it's control events for setting text 
size, color, etc?

Cause I need to emulate it whenever someone clicks anywhere within an 
RTE and it's just not working

 



Re: [flexcoders] Rich Text Editor

2008-02-15 Thread Suketu Vyas
I am running under similar kind of RTE problem. my scenario is more complex.
I am using FCKEditer which i have integrated with flex using Iframe and
ExternalInterface API.
I still have to work on browser compatibility part. but it works really
well.

~ Suketu Vyas

On Fri, Feb 15, 2008 at 9:34 AM, Harald Dehn <[EMAIL PROTECTED]> wrote:

>Hi Gordon,
>
>
>
> yes but we don't need the full functionality of buzzword, for example we
> don't need tables. Our problems with the RTE component are:
>
>
>
> -  htmlText - we like to generate pdf-documents with the
> .net-backend.
>
> -  missing image support
>
> -  missing page view and a page counter
>
>
>
> Harald Dehn
>
>
>
> *Von:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *Im
> Auftrag von *Gordon Smith
> *Gesendet:* Freitag, 15. Februar 2008 06:03
> *An:* flexcoders@yahoogroups.com
> *Betreff:* RE: [flexcoders] Rich Text Editor
>
>
>
> > Do you the a chance to get a component from your "buzzword"-company in
> the meantime
>
>
>
> Are you asking "Can we get Buzzword's editor as a Flex component?". That's
> a different part of the company, and I'm not aware of any plans to make it
> available in component form (either free or for money). I suspect that there
> are business reasons to keep it as an Adobe-only application for awhile, but
> I'm just an engineer and not involved in such decisions.
>
>
>
> BTW, what does your CRM app need in a texteditor beyond what
> RichTextEditor currently provides? RTL support or something else?
>
>
>
> Gordon Smith
>
> Adobe Flex SDK Team
>
>
>  ----------
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Harald Dehn
> *Sent:* Thursday, February 14, 2008 12:18 AM
> *To:* flexcoders@yahoogroups.com
> *Subject:* Re: [flexcoders] Rich Text Editor
>
> Hi Gordon,
>
>
>
> this is a realy good news. Do you the a chance to get a component from
> your "buzzword"-company in the meantime. We need a texteditor for a crm
> application we developed in flex.
>
>
>
> Regards,
>
> Harald Dehn
>
>
>
> Am 14.02.2008 um 02:48 schrieb Gordon Smith:
>
>
>
>
>
>  > Why Adobe does not make something decent about this issue?
>
>
>
> We're working on it! Flash Player 10 ("Astro") and Flex 4 are likely to
> have a new text engine that will support right-to-left text and other text
> improvements.
>
>
>
> Gordon Smith
>
> ! Adobe Fl ex SDK Team
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:flexcoders@ 
> yahoogroups.com] *On Behalf Of *Rafael Faria
> *Sent:* Wednesday, February 13, 2008 4:47 PM
> *To:* flexcoders@yahoogroups.com
> *Subject:* [flexcoders] Rich Text Editor
>
> I know this had been a big subject of discussion in the past but i
> want to bring it up again.
>
> Does anybody found a good solution to implement RTE in f! lex?
>
> I tried the iframe solution but it seems that it has some problems
> with rendering, someone work it out how to fix it?
>
> I know there is some people from adobe here, so my question is
> Why Adobe does not make something decent about this issue?
> If adobe is trying to improve the flash player as much as they can,
> why do not spend some time in a decent RTE component?
>
> Any suggestion for any good RTE, even a paid one?
>
> Thanks
> Raf
>
>
>
>
>
>   
>


RE: [flexcoders] Rich Text Editor

2008-02-14 Thread Gordon Smith
> Do you the a chance to get a component from your "buzzword"-company in
the meantime
 
Are you asking "Can we get Buzzword's editor as a Flex component?".
That's a different part of the company, and I'm not aware of any plans
to make it available in component form (either free or for money). I
suspect that there are business reasons to keep it as an Adobe-only
application for awhile, but I'm just an engineer and not involved in
such decisions.
 
BTW, what does your CRM app need in a texteditor beyond what
RichTextEditor currently provides? RTL support or something else?
 
Gordon Smith
Adobe Flex SDK Team



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Harald Dehn
Sent: Thursday, February 14, 2008 12:18 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Rich Text Editor



Hi Gordon, 

this is a realy good news. Do you the a chance to get a component from
your "buzzword"-company in the meantime. We need a texteditor for a crm
application we developed in flex.

Regards,
Harald Dehn 

Am 14.02.2008 um 02:48 schrieb Gordon Smith:




> Why Adobe does not make something decent about this issue?
 
We're working on it! Flash Player 10 ("Astro") and Flex 4 are
likely to have a new text engine that will support right-to-left text
and other text improvements.
 
Gordon Smith
! Adobe Fl ex SDK Team



From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria
Sent: Wednesday, February 13, 2008 4:47 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich Text Editor



I know this had been a big subject of discussion in the past but
i
want to bring it up again.

Does anybody found a good solution to implement RTE in f! lex?

I tried the iframe solution but it seems that it has some
problems
with rendering, someone work it out how to fix it?

I know there is some people from adobe here, so my question is
Why Adobe does not make something decent about this issue?
If adobe is trying to improve the flash player as much as they
can,
why do not spend some time in a decent RTE component?

Any suggestion for any good RTE, even a paid one?

Thanks
Raf







 


Re: [flexcoders] Rich Text Editor

2008-02-14 Thread Weyert de Boer
Why not just make your own caret, use text fields the blocks of text, 
and come up with some smart manager for mapping the characters to a x,y 
and r,c position. Selection can be done by inverting the text and draw a 
rectangle below the textfield using drawing api. Simplest solution for now.


Re: [flexcoders] Rich Text Editor

2008-02-14 Thread Harald Dehn

Hi Gordon,

this is a realy good news. Do you the a chance to get a component from  
your "buzzword"-company in the meantime. We need a texteditor for a  
crm application we developed in flex.


Regards,
Harald Dehn

Am 14.02.2008 um 02:48 schrieb Gordon Smith:



> Why Adobe does not make something decent about this issue?

We're working on it! Flash Player 10 ("Astro") and Flex 4 are likely  
to have a new text engine that will support right-to-left text and  
other text improvements.


Gordon Smith
Adobe Flex SDK Team

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]  
On Behalf Of Rafael Faria

Sent: Wednesday, February 13, 2008 4:47 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich Text Editor

I know this had been a big subject of discussion in the past but i
want to bring it up again.

Does anybody found a good solution to implement RTE in flex?

I tried the iframe solution but it seems that it has some problems
with rendering, someone work it out how to fix it?

I know there is some people from adobe here, so my question is
Why Adobe does not make something decent about this issue?
If adobe is trying to improve the flash player as much as they can,
why do not spend some time in a decent RTE component?

Any suggestion for any good RTE, even a paid one?

Thanks
Raf








RE: [flexcoders] Rich Text Editor

2008-02-13 Thread Gordon Smith
> Why Adobe does not make something decent about this issue?
 
We're working on it! Flash Player 10 ("Astro") and Flex 4 are likely to
have a new text engine that will support right-to-left text and other
text improvements.
 
Gordon Smith
Adobe Flex SDK Team



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Rafael Faria
Sent: Wednesday, February 13, 2008 4:47 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich Text Editor



I know this had been a big subject of discussion in the past but i
want to bring it up again.

Does anybody found a good solution to implement RTE in flex?

I tried the iframe solution but it seems that it has some problems
with rendering, someone work it out how to fix it?

I know there is some people from adobe here, so my question is
Why Adobe does not make something decent about this issue?
If adobe is trying to improve the flash player as much as they can,
why do not spend some time in a decent RTE component?

Any suggestion for any good RTE, even a paid one?

Thanks
Raf



 


RE: [flexcoders] Rich text editor in TabNavigator causes runtime exception.

2007-01-02 Thread Tracy Spratt
Ah, it is strongly implied in the docs that TabNavigator children must
be containers: "...for navigating between its child containers ...", and
similar language.

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of parkerwhirlow
Sent: Tuesday, January 02, 2007 5:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich text editor in TabNavigator causes runtime
exception.

 

Hi all,

I have placed a RichTextEditor into a tabNavigator, and I get the
following runtime error. See sample app. If you remove the
tabNavigator, then the RichTextEditor works fine.

Any ideas? Am I doing something dumb?

TypeError: Error #1009: Cannot access a property or method of a null
object reference.
at
mx.controls::RichTextEditor/mx.controls:RichTextEditor::createChildren()
at mx.core::UIComponent/initialize()
at mx.core::Container/initialize()

and
TypeError: Error #1009: Cannot access a property or method of a null
object reference.
at mx.controls::RichTextEditor/::getTextStyles()
at Function/http://adobe.com/AS3/2006/builtin::apply
 ()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()

_


http://www.adobe.com/2006/mxml
 " 
layout="vertical" 
width="400" height="300">






 



RE: [flexcoders] Rich text editor in TabNavigator causes runtime exception.

2007-01-02 Thread Tracy Spratt
I couldn't find it specifically stated in the docs, but I suspect that
the TabNavigator is going to require *container* children and won't
allow a naked control.  It may be looking for "label" or something like
that.

 

Wrap the RTE in a canvas and it works ok.

 

Tracy

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of parkerwhirlow
Sent: Tuesday, January 02, 2007 5:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Rich text editor in TabNavigator causes runtime
exception.

 

Hi all,

I have placed a RichTextEditor into a tabNavigator, and I get the
following runtime error. See sample app. If you remove the
tabNavigator, then the RichTextEditor works fine.

Any ideas? Am I doing something dumb?

TypeError: Error #1009: Cannot access a property or method of a null
object reference.
at
mx.controls::RichTextEditor/mx.controls:RichTextEditor::createChildren()
at mx.core::UIComponent/initialize()
at mx.core::Container/initialize()

and
TypeError: Error #1009: Cannot access a property or method of a null
object reference.
at mx.controls::RichTextEditor/::getTextStyles()
at Function/http://adobe.com/AS3/2006/builtin::apply
 ()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()

_


http://www.adobe.com/2006/mxml
 " 
layout="vertical" 
width="400" height="300">






 



Re: [flexcoders] Rich text Editor ...

2006-02-09 Thread Manish Jethani
On 2/9/06, Jeremy Rottman <[EMAIL PROTECTED]> wrote:
> I have a rich text editor component in my app, that allows users to
> input text for news and the such. However, I can not figure out how to
> get the RTE component to insert the data into the database as html and
> no as flat plain text. Has anyone got this to work at all yet?

Use the "htmlText" property (instead of "text").


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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: RE : [flexcoders] Rich Text Editor

2005-08-26 Thread Reto M. Kiefer
Hi Philippe,

> I'm curious to see your RTE, I wrote one my self using CF7 flash
> forms: 
> http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html
> 
> 
> It could be adapted to flex, it's a mix of CF + AS

I would be glad to try it but unfortunately the download link doesn't
work... Could you take a look please?


Cheers

Reto


 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE : [flexcoders] Rich Text Editor

2005-08-26 Thread Philippe Maegerman
I'm curious to see your RTE, I wrote one my self using CF7 flash forms:
http://cfpim.blogspot.com/2005/04/rich-textarea-for-flash-cfforms.html 
 
 
It could be adapted to flex, it's a mix of CF + AS



De: flexcoders@yahoogroups.com de la part de Jeremy Rottman
Date: jeu. 25/08/2005 21:26
À: flexcoders@yahoogroups.com
Objet : [flexcoders] Rich Text Editor


I have a rich text editor that I wrote in coldfusion. It is pulled via
a customtag that I wrote. Now the question I have is, it is possible
to use this RTE with in flex, or are there any RTE's that are built
just for flex.





--
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 
Computer software testing 

 Macromedia flex 

 Development 

 
Software developer 

   



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 
 . 






--
**STATEMENT OF CONFIDENTIALITY** 

This e-mail and any attached files are confidential and intended solely for the 
use of the individual to whom it is addressed. If you have received this email 
in error please send it back to the person that sent it to you. Any views or 
opinions presented are solely those of author and do not necessarily represent 
those the Emakina Company. Unauthorized publication, use, dissemination, 
forwarding, printing or copying of this email and its associated attachments is 
strictly prohibited.

We also inform you that we have checked that this message does not contain any 
virus but we decline any responsability in case of any damage caused by an a 
non detected virus.
--



 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 
<>

RE: [flexcoders] Rich Text Editor

2005-08-25 Thread David Mendels
Hi,

This is in the list FAQ here: http://www.cflex.net/showfaq.cfm#Question367

-David
Macromedia

 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman
> Sent: Thursday, August 25, 2005 3:27 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Rich Text Editor
> 
> I have a rich text editor that I wrote in coldfusion. It is 
> pulled via a customtag that I wrote. Now the question I have 
> is, it is possible to use this RTE with in flex, or are there 
> any RTE's that are built just for flex.
> 
> 
> 
> 
> 
>  Yahoo! Groups Sponsor 
> ~-->  href="http://us.ard.yahoo.com/SIG=12hb7h9ev/M=362131.6882499.7
> 825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1125005210
> /A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
> ">Get Bzzzy! (real tools to help you find a job) Welcome to 
> the Sweet Life - brought to you by One Economy. 
> --
> --~-> 
> 
> --
> 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 ~--> 
http://us.ard.yahoo.com/SIG=12hlrupft/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1125006560/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy.
~-> 

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

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [flexcoders] Rich Text Editor Component, someone have it?

2005-07-18 Thread Clint Modien



hot control...  how well does it work in flex?On 7/17/05, JesterXL <[EMAIL PROTECTED]> wrote:









Closest you'll get for now:
 http://www.flashtexteditor.com/in.php
 
 
- Original Message - 
From: 
Bruno Martins 
To: flexcoders@yahoogroups.com 
Sent: Sunday, July 17, 2005 4:32 PM
Subject: [flexcoders] Rich Text Editor Component, someone have 
it?

Thanks...





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



   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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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.



  









Re: [flexcoders] Rich Text Editor Component, someone have it?

2005-07-17 Thread JesterXL





Closest you'll get for now:
 http://www.flashtexteditor.com/in.php
 
 
- Original Message - 
From: Bruno Martins 
To: flexcoders@yahoogroups.com 
Sent: Sunday, July 17, 2005 4:32 PM
Subject: [flexcoders] Rich Text Editor Component, someone have 
it?

Thanks...





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



   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.