how to use WYSIWYG editor in curl? - Printable Version +- Curl Global Community (https://communities.curl.com) +-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1) +--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2) +--- Thread: how to use WYSIWYG editor in curl? (/showthread.php?tid=532) |
how to use WYSIWYG editor in curl? - vidkid.kor@gmail.com - 06-14-2012 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~ RE: how to use WYSIWYG editor in curl? - c-s - 06-14-2012 You might want to check out the Visual Layout Editor, part of the developer download for Curl. RE: how to use WYSIWYG editor in curl? - vidkid.kor@gmail.com - 06-15-2012 (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 RE: how to use WYSIWYG editor in curl? - heavybugtracker - 06-15-2012 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. RE: how to use WYSIWYG editor in curl? - vidkid.kor@gmail.com - 06-15-2012 (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?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..! RE: how to use WYSIWYG editor in curl? - RobertShiplett - 06-17-2012 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. RE: how to use WYSIWYG editor in curl? - RobertShiplett - 06-21-2012 Curl has a RichTextArea class for instances of RichTextString ... is this what you need ? |