[flexcoders] Rich Text Editor and XML

2009-09-12 Thread stldvd
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

RE: [flexcoders] Rich Text Editor and XML

2009-09-12 Thread Tracy Spratt
: [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

[flexcoders] rich text editor bug?

2009-08-16 Thread Scott
Hey guys, I've got a few fields that populate off of an object through data binding. When I call a new object that has null fields, the text inputs clear out as expected. However, the RichText Editor keeps the old data even though it doesn't exist in the object anymore. For instance

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 mcv_b...@yahoo.com wrote: Hi, I wanted to know if there is a way to embed images using Rich Text Editor. Has

RE: [flexcoders] Rich text editor customization

2008-12-19 Thread Joel Carras
...@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

[flexcoders] Rich text editor customization

2008-12-18 Thread Mayank Vora
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

[flexcoders] ::: Rich Text Editor // Customization needed

2008-11-28 Thread artur_desig2dev
how to: 1 - disable the rollover Link function on words with URLS. ( because this is a usability disaster. ) 2 - restyle words with URLS as #FF and underlined. thanks! artur

[flexcoders] Rich Text Editor Problem

2008-09-29 Thread jainleena82
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.'

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

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

Re: [flexcoders] Rich text editor

2008-09-12 Thread Abdul Razack
ya u can remove the panel try with this code and gothorugh this website blog.flexexamples.com mx:RichTextEditor id=richTextEditor title=RichTextEditor status=version {richTextEditor.getStyle('version')} showControlBar=false cornerRadius=0

[flexcoders] Rich text editor

2008-09-10 Thread shelle.maffe
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?

[flexcoders] Rich Text Editor CSS Styles

2008-07-28 Thread owenjwest
Hi all, I am trying to override a default style that is being picked up on the Alignment buttons in a Rich Text Editor in Flex 3. We have a style defined for a TogglebuttonBar which is being used by the AlignButtons togglebuttonbar in the RTE. However the default TogglebuttonBar style is

[flexcoders] Rich Text Editor - putting the toolbar above the textArea

2008-05-16 Thread tony.grimes57
There seems to be some weird things going on with the RichTextEditor layout that i cant quite understand. If you look at the RichTextEditor class (F3) its actually an mxml file made up of a Panel with two child components (TextArea and ControlBar containing a ToolBar). When i do traces i get

[flexcoders] Rich Text Editor

2008-04-22 Thread grimmwerks
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-04-22 Thread Alex Harui
@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

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread Weyert de Boer
Easiest way is just to use a dynamic text field and make your own editor.

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread EECOLOR
A response I got from the Buzzword team: Thanks for your feedback, and your focus on making Flex an even better platform for developing rich Internet applications. We have often heard the request for a rich editing component in Flex - it certainly would have made the Buzzword development task

Re: AW: [flexcoders] Rich Text Editor

2008-02-17 Thread Weyert de Boer
If you start with a simple one-line editor without rich. You can do this: 1. create text field instance (set dynamic, disable selectable, editable) 2. create your own caret cursor (simple drawing api) 3. create your own canvas instance (for the selection rectangle) 4. catch the

AW: AW: [flexcoders] Rich Text Editor

2008-02-16 Thread Harald Dehn
: Re: AW: [flexcoders] Rich Text Editor Well, you can roll that your own I had the idea to write a series of articles about how to write custom components for Flex -- and after the smiley component I want to work on a RTE component. Only I haven't heard back from Adobe yet about this article

Re: AW: [flexcoders] Rich Text Editor

2008-02-16 Thread Derrick Anderson
: Freitag, 15. Februar 2008 19:54 An: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Betreff: Re: AW: [flexcoders] Rich Text Editor Well, you can roll that your own I had the idea to write a series of articles about how to write custom components for Flex -- and after the smiley

AW: [flexcoders] Rich Text Editor

2008-02-15 Thread Harald Dehn
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

Re: [flexcoders] Rich Text Editor

2008-02-15 Thread Suketu Vyas
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

Re: AW: [flexcoders] Rich Text Editor

2008-02-15 Thread Weyert de Boer
Well, you can roll that your own I had the idea to write a series of articles about how to write custom components for Flex -- and after the smiley component I want to work on a RTE component. Only I haven't heard back from Adobe yet about this article idea. Maybe I should just put it on

Re: [flexcoders] Rich Text Editor

2008-02-14 Thread Harald Dehn
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

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

[flexcoders] Rich Text Editor

2008-02-13 Thread Rafael Faria
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

RE: [flexcoders] Rich Text Editor

2008-02-13 Thread Gordon Smith
: 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

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

2007-01-02 Thread parkerwhirlow
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

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

2007-01-02 Thread Tracy Spratt
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

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

2007-01-02 Thread Tracy Spratt
: 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

[flexcoders] Rich Text Editor Error

2006-08-23 Thread envidobi
Hi all, I'm getting this error Application uses a value of the wrong type for the current operation when ever i try to put in more than one break return in a rich text editor. It says its an error executing the database query but i know for sure that the datbase field is a memo field and can

[flexcoders] Rich text Editor ...

2006-02-09 Thread Jeremy Rottman
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? -- Flexcoders

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

RE : [flexcoders] Rich Text Editor

2005-08-26 Thread Philippe Maegerman
+ 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

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

[flexcoders] Rich Text Editor

2005-08-25 Thread Jeremy Rottman
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 ~--

RE: [flexcoders] Rich Text Editor

2005-08-25 Thread David Mendels
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

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

2005-07-18 Thread Clint Modien
: [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

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

2005-07-17 Thread Bruno Martins
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

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