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





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





[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 this fails and keeps the old data:

 



 

If I change the RichTextEditor to text input like this:

 



 

Then the text clears when the new object loads and the itemAt(0) is
null.

 

Anyone know why this is happening and have a work around?

 

Thanks

   Scott



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


[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






[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



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/

[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.'

Thanks and Regards,
Leena Jain



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


[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 difficult to read on buttons this small so I
want to override it in the RTE with a custom one.

My problem is that there does not seem to be any CSS class or subclass
that I can define in my external CSS style sheet that the RTE will
automatically pick up (it just gets the default ToggleButtonBar style).

Has anybody done this previously and if so, how did you get it to
work? I'd prefer not to have to subclass the RTE with a custom
component if possible, I just need a way to force it to pick up a
style definition for these buttons.

Hoping someone can help,

Owen



[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 this:
trace(rte.numChildren) // 1
trace(rte.getChildAt(0)) // textArea
trace(rte.getChildAt(1)) // throws error

So, its ignoring the ControlBar as a child component - even though 
you can see it in the MXML. Given that the ControlBar has no id, this 
makes it difficult to target since you cannot do so directly via 
actionscript OR the Display List as evidenced above.

The only way i can get to it is via teh parent property of teh 
RichTextEditor's tooBar property (as i said above, the toolbar is a 
child of the untargetable ContolBar which can also be referenced 
through the RichTextEditor property toolbar)
eg. rte.toolbar.parent // this is a reference to the ControlBar

With this in mind - the only way i can work out how to swap the 
components around is the following:
var displayObj:DisplayObject = rte.toolbar;
rte.toolbar.parent.removeChild(displayObj);
rte.addChildAt(displayObj, 0);

This seems like a clumsy workaround. Is my understanding of the AS3 
Display List flawed, is there are more direct way i am missing?




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

 



[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: 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 keydown-events (to handle left, right keys, and to 
update the text etc.)
5. catch mousedown-event (to reposition the caret)
6. handle the selection yourself (caret position, selection start, 
selection end)
7. write method to resolve a x,y position to the character index 
(e.g that caret position ;))
8. write method to resolve x,y position from a character index (to 
position to caret correctly)
9. write method to move the caret to this position

Really easy! Second step would be to support multiline in a similar 
matter and then support richtext...

Yours,
Weyert


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 easier. There are a number of ways for Adobe
to approach this, and I know the Flex team is looking at just such a
capability for their next big release. A native component will be a better
solution than any attempt to morph Buzzword in that direction. For more
information on developments in Flex, you could check out Adobe Labs
(http://labs.adobe.com)."

So do not put your hopes up for a buzzword component.


Greetz Erik




On 2/17/08, Weyert de Boer <[EMAIL PROTECTED]> wrote:
>
> Easiest way is just to use a dynamic text field and make your own editor.
>  Messages in this topic
> (
> 2) Reply (via web post)
> |
>  Start
> a new topic
> 
> Messages
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
> [image: Yahoo! 
> Groups]
> Change settings via the 
> Web(Yahoo!
>  ID required)
> Change settings via email: Switch delivery to Daily Digest<[EMAIL 
> PROTECTED]:+Digest>| Switch
> format to Traditional<[EMAIL PROTECTED]:+Traditional>
> Visit Your Group
> |
>  Yahoo!
> Groups Terms of Use  | Unsubscribe
> <[EMAIL PROTECTED]>
> Recent Activity
>
>-  92
>New 
> Members
>
> Visit Your Group
> 
> Yahoo! Finance
>
> It's Now 
> Personal
>
> Guides, news,
>
> advice & more.
> Ads on Yahoo!
>
> Learn more 
> now.
>
> Reach customers
>
> searching for you.
> Women of Curves
>
> on Yahoo! 
> Groups
>
> see how women are
>
> changing their lives.
> .
>


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-16 Thread Derrick Anderson
just go to the RichTextEditor.mxml in the framework source, i have attempted
to extend it but changed my mind as most of the properties i wanted to
modify were excluded in the original source.

once i noticed the richtexteditor is a simple mxml page with really only 2
functions that i cared about- it was easy to create my own RTE (only with
the formatting supported by the TextRange object though).

check out the source, see how they built theirs- and you can decide if you
want to extend it or develop one of your own.

d.

On Feb 16, 2008 6:03 AM, Harald Dehn <[EMAIL PROTECTED]> wrote:

>   Hi,
>
> could you give me some hints how to extend the RTE or develop an improved
> one?
>
> Harakd
>
> -Ursprüngliche Nachricht-
> Von: flexcoders@yahoogroups.com  [mailto:
> flexcoders@yahoogroups.com ] Im
> Auftrag von Weyert de Boer
> Gesendet: Freitag, 15. Februar 2008 19:54
> An: flexcoders@yahoogroups.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 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 my blog :)
> >
> > 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
> >
>
> --
> 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
>
>  
>


AW: AW: [flexcoders] Rich Text Editor

2008-02-16 Thread Harald Dehn
Hi,

could you give me some hints how to extend the RTE or develop an improved
one?

Harakd

-Ursprüngliche Nachricht-
Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im
Auftrag von Weyert de Boer
Gesendet: Freitag, 15. Februar 2008 19:54
An: flexcoders@yahoogroups.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 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 my blog :)
>
> 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
>



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






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 my blog :)
>
> 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
>



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

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

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

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


AW: [flexcoders] Rich Text Editor

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



 


[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 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
<http://adobe.com/AS3/2006/builtin::apply> ()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()

_


http://www.adobe.com/2006/mxml
<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
<http://adobe.com/AS3/2006/builtin::apply> ()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()

_


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






 



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








[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 handle pleany of text, which in this case is html going in. 
Anyone have any suggestions?
Thanks,
David








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

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/
 




[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 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 
<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 
<http://groups.yahoo.com/gads?t=ms&k=Computer+software+testing&w1=Computer+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.sig=kh2CguJwmatU5oBXjFo9Rg>
 Macromedia flex 
<http://groups.yahoo.com/gads?t=ms&k=Macromedia+flex&w1=Computer+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.sig=dAUcEV7do91-wrRtVS641g>
 Development 
<http://groups.yahoo.com/gads?t=ms&k=Development&w1=Computer+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.sig=AlxNUQBOI7Io7S7nhmxV0Q>
 
Software developer 
<http://groups.yahoo.com/gads?t=ms&k=Software+developer&w1=Computer+software+testing&w2=Macromedia+flex&w3=Development&w4=Software+developer&c=4&s=93&.sig=QWIit8JayomoIHLVkV3FDg>
   



YAHOO! GROUPS LINKS 



*Visit your group "flexcoders 
<http://groups.yahoo.com/group/flexcoders> " on the web.
  
*To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 
  
*Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
<http://docs.yahoo.com/info/terms/> . 






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




[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 ~--> 
http://us.ard.yahoo.com/SIG=12hb7h9ev/M=362131.6882499.7825260.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

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



  









[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 this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.