Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Re: rich text editing

    Look into activeX stuff... That's how they do it...
    --
    // DvDmanDT
    MSN: [email]dvdmandt@hotmail.com[/email]
    Mail: [email]dvdmandt@telia.com[/email]
    "Redmond Militante" <r-militante@northwestern.edu> skrev i meddelandet
    news:20030820195810.GD52994@darkpossum...


    Dvdmandt Guest

  2. Similar Questions and Discussions

    1. Rich Text Editor
      Hi! I know that exists many rich text editor on internet. But i want lear how to do it. I learn to do, but i?m not getting to aply the bold...
    2. Rich Text Editor in DW ?
      Looking for a way to edit a MySQL db text field as RTF...is there an RTE extension / add in / whatever that will allow me to do that ? Thanks, Nick
    3. Content from a memo field: converting the rich text into plain text
      Hi folks, I have an Access 2000 db with a memo field. Into the memo field I put text with bold attributes, URL etc etc What I need to to is...
    4. [PHP] rich text editing
      DvDmanDT <mailto:dvdmandt@telia.com> on Wednesday, August 20, 2003 1:32 PM said: Umm.. that's how they do what? Oh I see what happened......
    5. Rich Text Box
      Hi, I'm trying to create a rich text box using VB.Net. Does anybody know how I can go about creating one without having to buy a third party...
  3. #2

    Default Re: [PHP] Re: rich text editing

    Tan Ai Leen wrote:
    > You can also use dhtml/js to code a html editor. But it will work in IE
    > only.
    And also mozilla 1.3+

    [url]http://prdownloads.sourceforge.net/itools-htmlarea/[/url]

    Download version 3.0 beta

    Marek Kilimajer Guest

  4. #3

    Default Re: rich text editing

    You can also use dhtml/js to code a html editor. But it will work in IE
    only. Search for online html editor. See this
    link:[url]http://msdn.microsoft.com/library/default.asp[/url]
    If you are developing for a organisation, the type of browser used is easy
    to predict. If you are developing for the general public, there is of course
    other browsers to take care of. Java will fit all kind of browsers (that
    have java plugin) but it is usually very heavy for the client side.

    Regards,
    Tan Ai Leen


    Tan Ai Leen Guest

  5. #4

    Default Re: [PHP] Re: rich text editing

    hi all

    i've been playing around with the 3.0 beta version of html area. it seems really nice. (thank you also btw, for the advice about the rtf tags...).

    the problem with html area is - it works great on ie and moz, but when you try to look at html area on a nonsupported browser -say, IE for mac - it doesn't work at all. we have mostly IE 5+ users using this app, but there are a number of mac users. what do people generally do when using an activexrich text editor and the user is using a non supported browser?

    thanks
    redmond

    [Thu, Aug 21, 2003 at 03:20:00PM +0200]
    This one time, at band camp, Marek Kilimajer said:
    > Tan Ai Leen wrote:
    >
    > >You can also use dhtml/js to code a html editor. But it will work in IE
    > >only.
    > And also mozilla 1.3+
    >
    > [url]http://prdownloads.sourceforge.net/itools-htmlarea/[/url]
    >
    > Download version 3.0 beta
    >
    >
    > --
    > PHP General Mailing List ([url]http://www.php.net/[/url])
    > To unsubscribe, visit: [url]http://www.php.net/unsub.php[/url]
    >
    --
    FreeBSD 5.1-RELEASE-p2 FreeBSD 5.1-RELEASE-p2 #0: Mon Aug 11 13:00:11 CDT 2003
    5:15PM up 7 days, 16:59, 2 users, load averages: 0.14, 0.07, 0.11

    A bachelor is a selfish, undeserving guy who has cheated some woman out
    of a divorce.
    -- Don Quinn


    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.2.2 (FreeBSD)

    iD8DBQE/RUf87g+NJl/fSB0RAuohAKCYSjhr1rkD83jQ6vjbqQwE/RmCZwCgpEH8
    FK1nltiOoHuK9vzxswdA0bk=
    =VJAB
    -----END PGP SIGNATURE-----

    Redmond Militante Guest

  6. #5

    Default Re: [PHP] Re: rich text editing

    Hi,

    Redmond Militante wrote:
    >
    > (...) what do people generally do when using an activex rich text
    > editor and the user is using a non supported browser?
    You can display a textarea. It'd allow users to edit/add content in a
    simpler, less powered way.

    --
    regards,

    ------------------------------------------------------------
    Nelson Rodríguez-Peña A.
    Diseño y Desarrollo Web y Multimedia
    ------------------------------------------------------------

    Nelson rodríguez-Peña alarcón Guest

  7. #6

    Default RE: [PHP] Re: rich text editing

    The only problem in doing so, for me at least, is in editing text
    created by htmlarea. Nonsupported users who get a normal textarea
    pre-loaded with html generated by htmlarea could break tags, etc., on
    updates. I wrote a class I use to work around this by: determining which
    type of textarea they'll get (wysiwyg htmlarea or plain textarea), and
    if they're using a plain textarea and editing html, all html except for
    bold, italics and underline tags are replaced with markers. The plain
    textarea user then can add standard bb style tags, [b], [i], etc., then
    on submit the bb tags will be converted to html, and the original html
    will be added back in, properly nested, etc. If you'd like to use it,
    I'd be happy to email it. I'm sure it could use a few extra sets of
    eyes.
    Andy
    > -----Original Message-----
    > From: Nelson Rodríguez-Peña Alarcón [mailto:nelson@webstudio.cl]
    > Sent: Thursday, August 21, 2003 6:46 PM
    > To: Redmond Militante
    > Cc: [email]php-general@lists.php.net[/email]
    > Subject: Re: [PHP] Re: rich text editing
    >
    > Hi,
    >
    > Redmond Militante wrote:
    > >
    > > (...) what do people generally do when using an activex rich text
    > > editor and the user is using a non supported browser?
    >
    > You can display a textarea. It'd allow users to edit/add content in a
    > simpler, less powered way.
    >
    > --
    > regards,
    >
    > ------------------------------------------------------------
    > Nelson Rodríguez-Peña A.
    > Diseño y Desarrollo Web y Multimedia
    > ------------------------------------------------------------
    >
    >
    > --
    > PHP General Mailing List (http://www.php.net/)
    > To unsubscribe, visit: http://www.php.net/unsub.php


    Andy Crain Guest

  8. #7

    Default Re: rich text editing

    I am Mr Elliot Ehimen,I am sorry to just sent you an email without your
    notification..I am just a business man .I offer loan to those that need loan
    and willing to pay me back..If you want a loan do email me but if you know
    you have any friend willing to get a loan do tell him to contact me.I mean
    Copy my email don't Click Reply to okay. Via... Email:
    elliotloans01@live.com
    Full Name:............
    Sex:.............
    Phone:................
    Country:..................
    Contact Address:............
    Loan Duration:.............
    Monthly income............
    Amount Needed as Loan:..........
    Have you applied before?...........
    All you need to do is copy my address and reply me with it
    elliotloans01@live.com
    Elliot Ehimen
    Loan Processing Officer
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139