Curl Global Community

Full Version: how to use WYSIWYG editor in curl?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.


hi!!

how to use WYSIWYG editor in curl?

for example,

1. http://ckeditor.com/

2. http://communities.curl.com/newthread.php?fid=2 (only login user / this site)

thank you~




You might want to check out the Visual Layout Editor, part of the developer download for Curl.
(06-14-2012, 06:03 PM)c-s Wrote: [ -> ]You might want to check out the Visual Layout Editor, part of the developer download for Curl.
thank you~

I need html editor in Graphic Container (VBox, HBox, ...)
ex) email, posting with image
From examples you raised, I guess you are asking for an HTML viewer instead of an html editor, right?
If so, maybe you could have a try with EmbededBrowser, a wrapper api for IE running on windows machines with Curl RTE.

(06-15-2012, 01:36 PM)heavybugtracker Wrote: [ -> ]From examples you raised, I guess you are asking for an HTML viewer instead of an html editor, right?
If so, maybe you could have a try with EmbededBrowser, a wrapper api for IE running on windows machines with Curl RTE.
thank you~
(Sorry, I'm poor at English ..)


Yes! but I have to edit.
EmbeddedBrowserGraphic have no method for DOM object, property for editable.

Finally, I have to use Shell.Explorer.
{ActiveXObject ProgId="Shell.Explorer" }
It's verry unhappy... --;

have a nice day..!


Hi

It is very easy to edit the content of anything pulled in over HTTP - such as HTML - but how do you plan to save those edit changes ? You cannot "write" to an HttpFile as you can to a LocalFile ... even on your web server you would have to use a script and not an applet ... am I wrong?

For some of these web tasks I use the Rebol language ( fewest lines of code in another expression-based language - and no keywords - with excellent parse dialect that is PEG-equivalent. )

The Curl IDE doc's come with notes on programmatically using the Curl editor and include the code.

Or have I misunderstood ?


(06-15-2012, 02:59 PM)vidkid.kor@gmail.com Wrote: [ -> ]Yes! but I have to edit.
EmbeddedBrowserGraphic have no method for DOM object, property for editable.

Finally, I have to use Shell.Explorer.
{ActiveXObject ProgId="Shell.Explorer" }
It's verry unhappy... --;

have a nice day..!

Curl has a RichTextArea class for instances of RichTextString ...

is this what you need ?

[Image: RichTextArea.jpg]