coldfusion mx and fck editor integration

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default coldfusion mx and fck editor integration

    Hi, was just wondering if anybody could help me out with something . i am
    attempting to get fck editor to work with coldfusion mx. Initially i had to
    change one of the paths in the sample file, as it couldn't find a required
    template .. Once doing that it simply tells me that 'page cannot be found' i
    was wondering if anybody has gotten this to work? i am using a localhost
    environment to do so .. iis 5 , win2000. Thanks in advance, Mark

    mantra Guest

  2. Similar Questions and Discussions

    1. Flash coldfusion integration
      I'm trying to insert a record in a database using coldfusion and a flash form, coldfusion is receiving the field from flash, but the cfquery tag is...
    2. Flex/ColdFusion Integration
      I am quite new to Flex and am looking for someone who can point me to a working example or put together a very simple sample project that sends data...
    3. Coldfusion Flash Integration
      I m a coldfusion developer. I really want to integrate flash and coldfusion. I know basics of flash, never used it for interactivity with db. Please...
    4. ColdFusion and .NET Integration HAS ARIVED!
      This is the coolest thing ever. We currently have lots of ColdFusion development on our frontend and tons of .NET on the backend, but all of it was...
    5. UPS Coldfusion Integration
      I need to integrate my shopping cart with UPS to get on the fly shipping rates. UPS used an XML system. (my knowledge of XML is dodgy at best.) Is...
  3. #2

    Default Re: coldfusion mx and fck editor integration

    I've just recently downloaded it and haven't had any problems using in in mx 7.
    I did modified the cfc that is provided in the download so I could control some
    of the parameters. You may need to download a newer version if you haven't
    recently.

    <form.......>
    <cfinvoke
    component="FCKeditor.fckeditor"
    method="create">
    <cfinvokeargument name="InstanceName" value="Test">
    <cfinvokeargument name="width" value="550">
    <cfinvokeargument name="height" value="600">
    <cfinvokeargument name="value" value="#form.test#">
    </cfinvoke>
    .....
    </form>

    dannyra 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