Re: Wysiwyg editor

2011-10-26 Thread Claude Schnéegans
>> the paste from word button turns it in to plain ASCII text Last time I looked at the clean function in FCK, I think it did not cut elementary and non harmful HTML, like Bold, italic, etc. However most of pasted text include styles and classes, which is almost impossible to clean efficiently

Re: Wysiwyg editor

2011-10-25 Thread Mike Kear
Yes, the paste from word button turns it in to plain ASCII text, at least as far as all my trials have gone. It's possible there are examples where there are fragments left, but I havent found any. It strips out all the formatting, style info, html from the word text. I have removed all

Re: Wysiwyg editor

2011-10-25 Thread Russ Michaels
riginal Message- > From: Steve Milburn [mailto:scmilb...@gmail.com] > Sent: Tuesday, October 25, 2011 9:44 AM > To: cf-talk > Subject: Re: Wysiwyg editor > > > You can customize the ckEditor toolbar and remove the Paste button, leaving > only the Paste From Word option availab

RE: Wysiwyg editor

2011-10-25 Thread Rick Faircloth
And the Paste from Word button works for all circumstances? -Original Message- From: Steve Milburn [mailto:scmilb...@gmail.com] Sent: Tuesday, October 25, 2011 9:44 AM To: cf-talk Subject: Re: Wysiwyg editor You can customize the ckEditor toolbar and remove the Paste button, leaving

RE: Wysiwyg editor

2011-10-25 Thread Rick Faircloth
I guess that's better than trashed sites. My guess is that they'd try the regular Paste button before calling, anyway. -Original Message- From: Claude Schnéegans [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans >leaving only the Paste From Word option available. ... then you will have users

RE: Wysiwyg editor

2011-10-25 Thread Rick Faircloth
Ok, thanks, Russ... good to know. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Tuesday, October 25, 2011 9:50 AM To: cf-talk Subject: Re: Wysiwyg editor Rick, there are multiple ways to paste into the editor that's why. You could just click the re

Re: Wysiwyg editor

2011-10-25 Thread Russ Michaels
it possible? > > Rick > > > -Original Message- > From: Claude Schnéegans > [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans =?ISO-8859-1?Q?ue.com=3E?=] > Sent: Tuesday, October 25, 2011 9:04 AM > To: cf-talk > Subject: Re: Wysiwyg editor > > >  >>The use

Re: Wysiwyg editor

2011-10-25 Thread Claude Schnéegans
>>leaving only the Paste From Word option available. ... then you will have users calling you to ask "How can I paste if not from Word?" ;-) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-A

Re: Wysiwyg editor

2011-10-25 Thread Steve Milburn
=E9egans =?ISO-8859-1?Q?ue.com=3E?=] > Sent: Tuesday, October 25, 2011 9:04 AM > To: cf-talk > Subject: Re: Wysiwyg editor > > > >>The user copys the text from the word document, then instead of > pasting it straight into the editor, click the "paste from word" &g

RE: Wysiwyg editor

2011-10-25 Thread Rick Faircloth
As one who has never wanted to give (or actually given) so much aesthetic control over displayed content, I haven't had the need to implement ckEditor. However, after following this thread, and based largely on Claude's comment below, I wonder why the "Paste" button isn't programmed to perform th

Re: Wysiwyg editor

2011-10-25 Thread Claude Schnéegans
>>The user copys the text from the word document, then instead of pasting it straight into the editor, click the "paste from word" I never implemented fckEditor, mainly because the programer could not force cleaning from Word automatically. The was a button "Paste" and another one "Paste from

RE: Wysiwyg editor

2011-10-25 Thread Will Swain
I think the latest version of tinyMce does this for you. Worth a look for the OP perhaps. Will -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: 25 October 2011 10:06 To: cf-talk Subject: Re: Wysiwyg editor no sorry, but I know from looking atthe code that it

RE: Wysiwyg editor

2011-10-25 Thread Edward Chanter
I'll investigate, thanks Russ :) > -Original Message- > no sorry, but I know from looking atthe code that it allows you to capture any > event and perform an action. > ~| Order the Adobe Coldfusion Anthology now! http:

Re: Wysiwyg editor

2011-10-25 Thread Russ Michaels
no sorry, but I know from looking atthe code that it allows you to capture any event and perform an action. On Tue, Oct 25, 2011 at 10:03 AM, Edward Chanter wrote: > >> -Original Message- >> you can capture the paste event and put it through the word paste by >> default. >> > > Now there

RE: Wysiwyg editor

2011-10-25 Thread Edward Chanter
> -Original Message- > you can capture the paste event and put it through the word paste by > default. > Now there's a totally brilliant idea! This is something I really need to figure out how to do. Do you mayhaps have a piece of javascript which does this that you'd be willing to share

Re: Wysiwyg editor

2011-10-25 Thread Russ Michaels
you can capture the paste event and put it through the word paste by default. On Tue, Oct 25, 2011 at 9:44 AM, Edward Chanter wrote: > > I've tried most of the WYSIWYG editors and CKEditor is definitely the best > in terms of features and customisation. > > The problem I found is users. You can

RE: Wysiwyg editor

2011-10-25 Thread Edward Chanter
I've tried most of the WYSIWYG editors and CKEditor is definitely the best in terms of features and customisation. The problem I found is users. You can put notes in you can warn them, you can call them email them and practically burn the "Do not paste directly into the editor from ANYWHERE witho

Re: Wysiwyg editor

2011-10-24 Thread Mike Kear
fckEditor (or its more modern cousin ckeditor) has a button to paste from word instead. You can have all kinds of style and markup in the clipboard and it'll strip it all out and give you just plain text entered into your field. The user copys the text from the word document, then instead of p

RE: Wysiwyg editor

2011-10-24 Thread Jenny Gavin-Wear
;Sent: 25 October 2011 01:20 >>To: cf-talk >>Subject: Re: Wysiwyg editor >> >> >> >>I recommend that people only copy and paste from notepad. Extra html >>that gets in there from any other source can wreak havoc on the final >>output. >> >>

Re: Wysiwyg editor

2011-10-24 Thread Matt Williams
I recommend that people only copy and paste from notepad. Extra html that gets in there from any other source can wreak havoc on the final output. -Matt On Mon, Oct 24, 2011 at 6:43 PM, Greg Morphis wrote: > > That's exactly what I thought. In fact I found a solution how to get rid of > the err

Re: Wysiwyg editor

2011-10-24 Thread Greg Morphis
That's exactly what I thought. In fact I found a solution how to get rid of the error message. I appreciate the reply! On Oct 24, 2011 5:41 PM, "Russ Michaels" wrote: > > the copy and paste is a firefox security setting, they are going to > get it with any WYSIWYG editor.The message actually tel

Re: Wysiwyg editor

2011-10-24 Thread Casey Dougall
On Mon, Oct 24, 2011 at 6:34 PM, Greg Morphis wrote: > > What Wysiwyg editor do you guys recommend? We're using the built in > fckEditor and people are complaining about pop up warnings from copying and > pasting from Word. I believe they are browser security issues but I'm > trying > to investi

Re: Wysiwyg editor

2011-10-24 Thread Russ Michaels
the copy and paste is a firefox security setting, they are going to get it with any WYSIWYG editor.The message actually tells you how to get rid of it if I recall. it is however very easy to bypass, you can drag and drop text or right click paste and you wont get the message, > > > ~~~

RE: WYSIWYG Editor

2006-06-12 Thread Snake
Sheesh, the people who came up with that are obviously lazy typists. -Original Message- From: Nick Tong - TalkWebSolutions.co.uk [mailto:[EMAIL PROTECTED] Sent: 12 June 2006 13:56 To: CF-Talk Subject: Re: WYSIWYG Editor *Internationalization* is often abbreviated as *I18N* (or *i18n

Re: WYSIWYG Editor

2006-06-12 Thread Nick Tong - TalkWebSolutions.co.uk
requirements ? > > > > > -Original Message- > From: James Holmes [mailto:[EMAIL PROTECTED] > Sent: Monday, June 12, 2006 7:56 AM > To: CF-Talk > Subject: Re: WYSIWYG Editor > > Thanks, I'll keep that in mind if we run into i18n requirements, which > is boun

Re: WYSIWYG Editor

2006-06-12 Thread Paul Hastings
Tim Laureska wrote: > Uuhh.. just curious, what are i18n requirements ? well in the case of tinyMCE, not being a rat's nest of encodings. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243179 Archives: http://www.hou

Re: WYSIWYG Editor

2006-06-12 Thread |Rens| > 0
http://www.google.com/search?q=define%3A+i18n Tim Laureska wrote: > Uuhh.. just curious, what are i18n requirements ? > > > > > -Original Message- > From: James Holmes [mailto:[EMAIL PROTECTED] > Sent: Monday, June 12, 2006 7:56 AM > To: CF-Talk &g

RE: WYSIWYG Editor

2006-06-12 Thread Tim Laureska
Uuhh.. just curious, what are i18n requirements ? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 7:56 AM To: CF-Talk Subject: Re: WYSIWYG Editor Thanks, I'll keep that in mind if we run into i18n requirements, which is bound to h

Re: WYSIWYG Editor

2006-06-12 Thread James Holmes
Thanks, I'll keep that in mind if we run into i18n requirements, which is bound to happen eventually. On 6/12/06, Paul Hastings <[EMAIL PROTECTED]> wrote: > James Holmes wrote: > > FWIW, I also use TinyMCE and I've found no reason to swap to FCK. > > fck's i18n support is better. -- CFAJAX docs

Re: WYSIWYG Editor

2006-06-12 Thread Paul Hastings
James Holmes wrote: > FWIW, I also use TinyMCE and I've found no reason to swap to FCK. fck's i18n support is better. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243166 Archives: http://www.houseoffusion.com/cf_li

Re: WYSIWYG Editor

2006-06-11 Thread James Holmes
o:[EMAIL PROTECTED] > Sent: Sunday, June 11, 2006 5:12 PM > To: CF-Talk > Subject: Re: WYSIWYG Editor > > You might check out TinyMCE. http://tinymce.moxiecode.com/ > > On 6/11/06, Charles Heizer <[EMAIL PROTECTED]> wrote: > > Hello, > > Can someone please re

Re: WYSIWYG Editor

2006-06-11 Thread Andrew Grosset
Another one is here: http://www.kevinroth.com/rte/ ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243163 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.

RE: WYSIWYG Editor

2006-06-11 Thread Brian Peddle
TinyMCE is great -- cross browser, good community support in the forums, easy to extend. -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 11, 2006 5:12 PM To: CF-Talk Subject: Re: WYSIWYG Editor You might check out TinyMCE. http

Re: WYSIWYG Editor

2006-06-11 Thread Rob Wilkerson
You might check out TinyMCE. http://tinymce.moxiecode.com/ On 6/11/06, Charles Heizer <[EMAIL PROTECTED]> wrote: > Hello, > Can someone please recommend a good + free WYSIWYG editor for me to embed in > my code. > > Thanks, > - Charles > > ~~

Re: WYSIWYG Editor

2006-06-11 Thread Pete Ruckelshaus
FCKeditor ++, though I wish there was a WYSIWYG that could be employed in Flash forms... Pete ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243158 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subsc

Re: WYSIWYG Editor

2006-06-11 Thread Auke van Leeuwen
Agreed ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243157 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseof

Re: WYSIWYG Editor

2006-06-11 Thread Matt Robertson
http://www.fckeditor.net. Arguably the most widely used editor out there. Certainly has the biggest user base as free editors go. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243156 Archives: http://www.houseoffu

RE: wysiwyg Editor for Macs

2004-03-04 Thread Kelly Tetterton
Correct -- -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 3:22 PM To: CF-Talk Subject: Re: wysiwyg Editor for Macs As I understand (just did a little survey on what was out there), it doesn't fully support stylesheets, right

Re: wysiwyg Editor for Macs

2004-03-04 Thread Rob
I changed it last night http://www.rohanclan.com/products/OpenHTMLEditor/OpenHTMLEditor.html On Thu, 2004-03-04 at 13:22, Hugo Ahlenius wrote: > | If you interested in developing a solution I'll give you the source > | code > | for my java wysiwyg editor > | http://www.rohanclan.com/products/Open

Re: wysiwyg Editor for Macs

2004-03-04 Thread Hugo Ahlenius
| If you interested in developing a solution I'll give you the source | code | for my java wysiwyg editor | http://www.rohanclan.com/products/OpenHTMLEditor.cfm | Its not done yet , as you can see , but it does work on Mac (Safari | with | 10.3 anyway and all the latest patches) But the link is

Re: wysiwyg Editor for Macs

2004-03-04 Thread Hugo Ahlenius
Tetterton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, March 03, 2004 14:58 Subject: RE: wysiwyg Editor for Macs | No problem. The 3 major pitfalls we've found: | | 1) you can't view the html source code (most other editors have some |

Re: wysiwyg Editor for Macs

2004-03-03 Thread Rob
On Wed, 2004-03-03 at 02:44, Daniel Pacitti - ASP wrote: > Does anyone know of a good wysiwyg editor that is compatable for a Mac that > can be used in an html form??  We are currently using ActivEdit 3 from > cfdev, but this does not work in a mac environment. If you interested in developing a so

Re: wysiwyg Editor for Macs

2004-03-03 Thread Pete Freitag
Daniel Pacitti - ASP wrote: > Does anyone know of a good wysiwyg editor that is compatable for a Mac > that > can be used in an html form??  We are currently using ActivEdit 3 from > cfdev, but this does not work in a mac environment. Actually the ActivEdit Java Applet will load in Safari 1.2 (a

Re: wysiwyg Editor for Macs

2004-03-03 Thread Thomas Chiverton
On Wednesday 03 Mar 2004 15:31 pm, Drew Harris wrote: > works in Mozilla 1.3 on all platforms! And more recent ones too. I just tried with FireFox 0.8 (fine) and Konquror (broken). -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limite

Re: wysiwyg Editor for Macs

2004-03-03 Thread Drew Harris
- > From: A.Little [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 03, 2004 7:54 AM > To: CF-Talk > Subject: RE: wysiwyg Editor for Macs > > Kelly, > Just out of interest, what have you found to be problematic with > eWebWP? > I'm asking because we're lookin

RE: wysiwyg Editor for Macs

2004-03-03 Thread Kelly Tetterton
ednesday, March 03, 2004 7:54 AM To: CF-Talk Subject: RE: wysiwyg Editor for Macs Kelly, Just out of interest, what have you found to be problematic with eWebWP? I'm asking because we're looking at using this tool too, but it would be handy to know the experiences from someone who's us

RE: wysiwyg Editor for Macs

2004-03-03 Thread A.Little
list if it goes a bit OT. -Original Message- From: Kelly Tetterton [mailto:[EMAIL PROTECTED] Sent: 03 March 2004 13:35 To: CF-Talk Subject: RE: wysiwyg Editor for Macs Check out Ektron's eWebWP. It's not perfect, by any means, but it's written in flash and we've used it su

Re: wysiwyg Editor for Macs

2004-03-03 Thread Stephen Moretti
Daniel Pacitti - ASP wrote: > Does anyone know of a good wysiwyg editor that is compatable for a Mac that > can be used in an html form??  We are currently using ActivEdit 3 from > cfdev, but this does not work in a mac environment. > Try this out http://www.interactivetools.com/products/htm

RE: wysiwyg Editor for Macs

2004-03-03 Thread Kelly Tetterton
Check out Ektron's eWebWP. It's not perfect, by any means, but it's written in flash and we've used it successfully with Mac clients -- -Original Message- From: Daniel Pacitti - ASP [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 4:45 AM To: CF-Talk Subject: wysiwyg Editor for Ma