How to create a text area with spell check and other functions similar to word?

I want to allow users the ability to copy and paste their content  on to the site.  The problem is giving them the option to use spell check and other word like features to my site.  My goal is to develop some thing  similar to how we post our question in this forums.  

Some old and some new.
http://www.webdesignbooth.com/15-really-useful-web-based-html-editors/
You realize you'll need to use server-side scripts and a database for this.  Instead of re-inventing the wheel, you might just want to install WordPress, Drupal or Joomla on your site.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • How to create a Sales order with ref to Contract using Function Module

    How to create a Sales order with ref to Contract using Function Module BAPI_SALESDOCU_CREATEFROMDATA ?

    We have a unique situation where we like change the sold-to customer of the sales order
    once order has been created. These orders have been created using either by function module
    BAPI_SALESDOCUMENT_COPY or using BDC (VA01, Copy with reference).
    These two processes work abosolutely fine except someone might have change the sold-to
    customer of the ship-to customer of the original sales order. If this the case then the new
    sales order will be created with the old sold-to and with not the new sold-to.
    We tried using BAPI_SALESDOCUMENT_CHANGE and commit afterwards. We checked
    the returned parameteres of the BAPIs and they are all successful but sold-to remains the
    same old one.
    Any help would be much more appreciated.

  • How do  create a slide show with both video and photos in elements 12

    how do  create a slide show with both video and photos in elements 12

    Hi Brian
    You can batch process a set of prepared slides from Full Edit (see image) using:
    File >> Process Multiple Files
    In the PMF dialog you can choose filename, date, or description (caption)
    Make sure you choose a separate destination folder to your source folder so as tot to permanently overwrite your originals.
    Click image to view

  • How to Create Free Text Area

    Hi all,
    I have a requirement where i need to create some 70 Z-fields inside Incident line item where user just enters data and will save the form.
    i have achived this by adding the fields into ORDERADM_I and is working fine.. i am able to bring the fields in the Incident line item.
    Now i have a requirement where i need to create 2 Free Text areas (like notes where user can enter unlimited text) .
    how to achive this.
    as of now i have created 2 more Z-fields in ORDERADM_I with 255 characters length and increased the line numbers into 4 in the GET_P method. but by doing this, user can enter only 255 characters and this is not a free text area.
    can any one give me steps to create a new free text area.
    Regards,
    Amshu

    Hi Steve,
    i have already tried this. it works fine
    look at my code below
    method GET_P_ZZAFLD0000AL.
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_textarea.
        WHEN if_bsp_wd_model_setter_getter=>fp_textarea_rows.
          rv_value = 4.
      ENDCASE.
    endmethod.
    this code will make the field as text area with size 4 lines . But the field length will be same as what we declare in the domine.. (max 256) . i cant enter unlimited text in this field though it looks like a text area.
    i guess v need to create a standard text somewhere in configuration and assign the same here...
    if anyone hv worked on this please revert back
    Regards
    Amshu

  • How to create a text Component With Certain Properties

    I need to create a text component with the following properties:
    Has Capability to be italic, right/left aligned, have different background / foreground colors, and most importantly, the ability to have a fixed width and a height that is set by the amount of text in it (ie line wrapping expands the field vertically).
    It should be a simple exercise, but I cannot seem to figure out how to do it.

    Here is the correct syntax :
    private static JEditorPane constructPane(String text, int normWidth, int normHeight, boolean rightAlign, boolean italic,boolean isWhite) {
              JEditorPane pane = new JEditorPane();
              pane.setEditable(false);
              pane.setContentType("text/html");
              pane.setText(
                   "<html><head></head><body>"
                   + (italic?"<i>":"")
                   + "<table><COLGROUP><COL width=\""+normWidth+"\"><THREAD><tr><td valign=\"top\" align="+(rightAlign?"\"right\"":"\"left\"")+">"
                   + text+"</td></tr></table>"
                   + (italic?"</i>":"")
                   + "</body></html>");
              pane.setSize(normWidth,normHeight);
              if(isWhite)
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.WHITE),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.WHITE);
              else {
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.BLACK),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.BLACK);
              return pane;
         }

  • Wondering how to create a text box with variables...

    Hi everyone,
    I was wondering how to create a text box, that at the beginning of the presentation, the audience fills in regarding what they think constitutes the role they have been chosen for.
    I would like that same box to then appear at the end of the presentation, with the text they typed in at the beginning, so they can reflect on what they think now, and what they thought then. I understand this is done using variables, but i'm not 100% sure.
    I hope I've worded this okay!

    This screenshot shows the properties panel, Style tab for the TEB. I relabeled it to My_TEB, used the X button  to create a user variable v_choice that will replace the generic Text_Entry_Box_1/
    This is the properties panel of a Shape, I went in Edit mode (double clicking)to make the Character section appear, where you find the X button. It opens the dialog box 'Insert Variable' and you can choose the var associated with the TEB. The Maximum Length will define how many characters will be displayed, the value of a variable has maximum 256 characters.

  • How to create a text file or XML file  and add content through  code into it...

    Hi Everyone,
    How to create a text file and add content through the code to the text file eform javascript ......orelse can we create a text file in life cycle designer...
    Else say how to create a new XML file through the code and how some content like Example "Hello World".

    You can create a text file as a file attachment (data object) using the doc.createDataObject and doc.setDataObjectContents:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.450.html
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.528.html
    You can then export the file with the doc.exportDataObject method:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.463.html
    This won't work with Reader if it hasn't been given the file attachment usage right with LiveCycle Reader Extensions.

  • Issue with spell-check and hyphenated words

    Ok, this one's got me stumped. If I type in confidnce-blder as a word, Pages only sees the second word as mispelled; it ignores the first word.
    Any one seen this and have a solution?

    Ok, it turns out it does not find it during the "check spelling while I type" but it does find it if I force a spell-check.

  • How to create a text file with data.

    Hi,
    I am writing java code for testing an application, some times test can failed in some cases, I want to display an error message in text file. To that I written the code as like,
    BufferedWriter bout;
    bout =new BufferedWriter(new FileWriter("test.txt"));
    String str=”Your input data is not match with pattern”
    bout.write(str);but here it is creating a text file “ test” without any data in it.
    Can any body help that to execute the program properly
    Regards
    Buntty

    sabre150 wrote:
    JoachimSauer wrote:
    You didn't close your BufferedWriter. Since it's buffered it probably didn't write anything to the underlying file.
    Generally you must close every Writer/OutputStream that you no longer use or it won't be written reliably.It's not quite as simple as that. If you have a chain of Writers / OutputStreams then you only have to close() the outer most one since each is responsible for closing any Writer/OutputStream that it wraps. If you do decide to close them individually (a bad idea but people do do it) then you MUST close them starting from the outer most one and working to the most inner one or you will not guarantee to flush any buffered content.Of course. I might have used a misleading phrasing here. What I meant is "Every time you are done with a Writer, you must close it" and not "You must close *every* Writer that you used". Thanks for the clarification.

  • How to create a text area for a blog that scrolls independent of the webpage.

    I want to create a boxed area (Middle 2/3 of page) with text in muse that scrolls up and down independently of the webpage itself. I am trying to create a blog posting on the page and the reader can scroll down on the text but the page (background image) stays static. See Shades link for example. This is a retail store using the same function for posting product.

    i'm trying to do the same thing, but with a section of images that scrolls independently of the rest of the page. i haven't found any way to achieve this yet, but i will keep looking and update you if i find anything. good luck!

  • How to create a login funtion with different usernames and password to iweb

    Hi,
    Im looking for hours for a solution to create / add a function to iweb which allows users to login to a member area with their own user names and passwords.
    Is there a simple way to realize this? So far I know there has to be a file with all the user name --> password combinations, can I add such a file to my idisk and then get it working with my iweb site?
    Is such an idea in general possible with iweb?
    Thanks for your help!
    Message was edited by: Macusar08

    One possibility may be to use the free drop.io to privately share links to your iWeb site pages and/or iDisk files. +"Each 'drop' (...) can be password-protected and set to expire after a period of time, so you can share exactly what you want with whom you want for as long as you want."+ (source).
    Note that drop.io doesn't require an email address, name or personal registration to set up a "drop". And you can place data in either one drop or multiple drops. Each drop comes with 100mb of storage for free and you can have as many drops as you want without signing up.

  • How to create the composite control with textinput,button and grid.

    I have created the application having two Textinput  and three button and a DataGrid.
    1. on click of first button next to "select a value" , a DataGrid will be open.
    and i am using all the functionality of DataGrid.
    2. now by using all of these control i have required to create single composite control.
    plz help me how to create this composite control.

    Right click the graph and select Create>Property Node. On the diagram, find the property node, right click it and first select Change All to Write. Right click again and if you select Properties, you will see a list of all the available properties for the graph. The properties you want are XScale.Minimum, XScale.Maximum, XScale.Increment, YScale.Minimum, YScaleMaximum, and YScale.Increment. You can grow the single property node to have as many properties that you want. Once you have all the properties created, create front panel controls and wire them to the property node. See the attached picture.
    Attachments:
    graph_properties.jpg ‏16 KB

  • How do I restore my toolbar with spell-check,auto-fill, etc.

    I have no toolbar. I write a blog and I cannot find spell-check, bold, underlining, etc. There is no auto-fill, etc. Nothing

    The Google Toolbar "will not be supported on Firefox 5 and future versions." <br />
    http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356%29
    The Google Toolbar '''7.1.20110512W''' version does work pretty good in Firefox 5.0 by using the Compatibility Reporter extension. But not every feature works 100%.<br />
    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/
    http://googlesystem.blogspot.com/2011/06/enable-google-toolbar-in-firefox-5.html

  • How to create private text chat with fms4(RTMFP)

    Hi,
    I am creating a simple text chat application but into the application a private chat functionality is available and i am not able to handle private chat functionality in fms4 (RTMFP) but it is working fine in (RTMP) connection and also user list area is available how will i  insert user name into the user list area text box and if any user will click user name then person will be able to do private chat.
    Thanks
    Sushil

    Here is the correct syntax :
    private static JEditorPane constructPane(String text, int normWidth, int normHeight, boolean rightAlign, boolean italic,boolean isWhite) {
              JEditorPane pane = new JEditorPane();
              pane.setEditable(false);
              pane.setContentType("text/html");
              pane.setText(
                   "<html><head></head><body>"
                   + (italic?"<i>":"")
                   + "<table><COLGROUP><COL width=\""+normWidth+"\"><THREAD><tr><td valign=\"top\" align="+(rightAlign?"\"right\"":"\"left\"")+">"
                   + text+"</td></tr></table>"
                   + (italic?"</i>":"")
                   + "</body></html>");
              pane.setSize(normWidth,normHeight);
              if(isWhite)
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.WHITE),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.WHITE);
              else {
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.BLACK),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.BLACK);
              return pane;
         }

  • How to create a Stage area in Windows XP and which is the best MS-OS

    Hi all,
    Please can somebody share the topics to install the R11 in Windows OS.
    Please give some details on this \I have Oracle installtion guide still i have some problem.
    Satyan

    Setting up stage area
    1. Log in as the operating system user with sufficient privileges to mount, umount,
    and eject the DVD. This user must also have write privileges to the stage area that
    you set up.
    2. Insert the Start Here disk in the DVD-ROM drive.
    3. Mount the DVD (conditional)
    If your system runs on a UNIX platform, and if you do not use AutoMount, you
    must mount the Start Here disk at this time.
    4. Verify software version (perl).
    You must have perl 5.0053 or higher installed, and it must be in your PATH. Use
    the following commands to identify the perl version and its location. The
    command is the same for both UNIX and Windows platforms:
    perl -v
    If perl is not present, download it from perl.com. For Windows users, the perl
    shipped by MKS is not certified. Use ActivePerl, which you can also download
    from perl.com.
    5. Run the adautostg.pl script.
    UNIX:
    $ cd
    $ perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    Windows:
    C:\> perl d:\mnt\cdrom\Disk1\rapidwiz\adautostg.pl
    The stage script message informs you that you can stage all the Rapid Install
    components or only selected components.
    6. Set up the stage area directory.
    At the prompt for the stage directory, enter the name of the system top-level
    directory. The Rapid wizard stage11i directory will be created in this path. For
    example, if you enter /u01 as the top-level directory, the resulting directory path
    will be /u01/Stage11i.
    7. Indicate the components to be staged.
    The script prompts you to choose the components that you want to stage:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Enter one or more components, separating each one with a space. You can indicate
    that you want to stage only the database technology stack (3), only the APPL_TOP
    (6), and so on. If you choose 1 (the default), all the components will be staged.
    However, this choice does not include the NLS component. You must explicitly
    select it by choosing 2, or by indicating that you want to stage language (NLS)
    software (7).
    8. Indicate whether you will stage language (NLS) software (conditional).
    Starting Rapid Install
    Getting Started 1-11
    If you choose 1 or 7 at the prompt, the script asks you for the language code of the
    languages to be staged. If you enter more than one language, separate the codes
    with a space.
    9. Insert the Rapid Install DVD.
    Insert the Rapid Install software as required in the prompt. The system message
    lists the files it has copied and their location in the stage area directory.
    10. Insert the NLS DVD (conditional).
    If you indicated that you will install languages, the script prompts for the
    language software it needs to complete your installation.
    Message was edited by:
    Rajan SVR

Maybe you are looking for