vote up 4 vote down star
2

Or are there?

From a desktop software developer point of view (as opposed, perhaps, to that of a web developer), rich web application platforms, such as Flash or Silverlight, look like better tools for doing WYSIWYG text editors for the web. They are capable of more sophisticated input/output, data representation etc., and they are consistent through the browsers and platforms (well, maybe not Silverlight and Moonlight yet, but at least Flash seems to be).

Still, the developers prefer to go with Javascript/DOM/HTML/CSS with all their incompatibilities, differences, toiling diligently to work around every particular quirk and using numerous hacks to make these technologies do what they were, perhaps, never originally supposed to be able to do.

There are some generally accepted arguments why you should not use Flash for a website, as well as a generally accepted exception: the embedded video players. How is a rich text editor different? "A flash control lives in it's isolated sandbox" - so, universally, does a WYSIWYG editor; "the text of a flash control can't be indexed by the search engines" - who cares about indexing the ever changing unsaved content of an editor, anyway; "not all users may have Flash installed" - so not all of them may have Javascript enabled, either.

So, here the question goes: what are the advantages of choosing Javascript over Flash for implementing a WYSIWYG editor? What would be the disadvantages of choosing otherwise?

flag

63% accept rate

5 Answers

vote up 3 vote down

The main advantages of a JavaScript-implemented RTE editor over Flash ones are:

  • You don't need Flash player to use
  • Most people do not have JavaScript turned off
  • They are generally richer and have better capability
  • Additional features like embedded tables, images and video can be offered
  • They produce HTML output ready to use as web content

Are you looking to build this editor yourself ? Because generally speaking, the choices available for wysiwyg editors in javascript today are pretty darn good. Check for example: fckeditor and tinymce. they are all pretty impressive and improving with each release and can be applied in a wide range of scenarios

There is fairly good support via designmode/contenteditable divs and iframes in most modern browsers for building these things. Flex 3 comes with a merely okay RichTextEditor that'll do the job but isn't all that great.

link|flag
As for HTML they produce - is it really ready? Would an HTML output of an RTE written in, say, IE always be compatible with FF or Opera? – Headcrab Apr 16 at 2:08
it has thusfar been my experience, using primarily FCKeditor, that its output HTML renders correctly on all current browsers. FCKeditor purports to work even on IE5.5, tho I don't do anything earlier than IE6 – Scott Evernden Apr 17 at 0:21
OK then, they have worked on the HTML output as well. As for my motivation, I was trying to make an error-marking system, mimicking what teachers do with their student's homeworks, marking them with red ink. Here's a very early prototype: blog1.nuigurumi.webfactional.com/entry_id=0&a… (works only in FF, select some text with the mouse to see, how it works). – Headcrab Apr 17 at 5:58
vote up 1 vote down

For Silverlight take a look at this

http://www.vectorlight.net/controls/rich_textblock.aspx

link|flag
vote up 1 vote down

The main reason (I think) is that there's a ready basis for doing rich HTML editing in the browsers using JavaScript (designMode). This was started by Microsoft in IE 5.5 (as far as I remember) and then picked up by Mozilla/Firefox, then Opera and then Safari. The browser would take care of holding the HTML DOM tree, allowing you to navigate and modify it, etc. You can create a basic (and totally retarded but still) HTML wysiwyg in browser with almost no javascript code. And then you can build features on to of that (what most of the modern javascript wysiwygs have done).

In Flash/Silverlight developer would have to start from scratch and implement all this stuff. And it's difficult to compete in this area with teams at Microsoft/Mozilla/Opera/etc.

link|flag
vote up 1 vote down

Technically speaking there is nothing stating you can't perform this task as majority of the basic RTF capabilities - visual that is - are in place. There are limitations however, example being automatic image / text reflow (ie if you assign an image and want text to wrap around it, it's somewhat a case of math + string + regex manipulation. Not easy.

You could also use Silverlight for everything except the Rendered window itself (toolbars etc, which will help with missing icons and provide more finite control over exception handling than JS offers today). As this will enable you to do make use of the WYSIWYG window (which is tapping into really the browser rendering engine itself) and Silverlight for all other needs.

We're looking into how we can enable this functionality in future versions so it's not falling on deaf ears.

Scott Barnes / Rich Platforms Product Manager / Microsoft.

link|flag
vote up 0 vote down

The main reason you find most of them on the web in Javascript is mostly economic, most sites that require user textual input (like blogs, forums, or stackoverflow) are built in HTML/Javascript. So when you have capable JS programmers building 99% of the site, why bring in a Flash programmer to build the other 1%.

But that doesn't mean they don't exist! A quick search on one of the more popular stock flash sites revealed 3:

RTE1 | RTE2 | RTE3

And that was just on FlashDen. Search FlashComponents.net or UltraShock.com, or even just google it and I guarantee you that there are many more for sale or for free download.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.