This content has been marked as final.
Show 7 replies
-
1. Re: Adding FCK Editor into the dynamic form wizard
Günter Schenk May 7, 2007 4:01 AM (in response to The Wackonerd)Hi,
no clue yet about integrating FCK Editor, but I managed to integrate TinyMCE and have written a tutorial (PDF, 3 pages, with screenshots etc) -- if you´d like to get this, please send a mail to info-at-cakmak-bauunternehmen.de
Günter Schenk
Adobe Community Expert, Dreamweaver -
2. Re: Adding FCK Editor into the dynamic form wizard
(Ricardo) May 7, 2007 2:59 PM (in response to The Wackonerd)I would like to see an improved version of KTML, wouldnt be the same using FCK after all these years on the KTML.
I received an email from Adobe about a future version or continuation of Interakt productsa, any one know bout this? -
3. Re: Adding FCK Editor into the dynamic form wizard
(Dave_Buchholz) May 10, 2007 6:52 AM (in response to Günter Schenk)Günter,<br /><br />I have sent you an e-mail requesting this.<br /><br />Thanks<br /><br />-- <br />Dave Buchholz<br />I-CRE8<br />www.i-cre8.co.uk<br />Skype ID: I-CRE8<br /><br /><br /><Günter_Schenk@adobeforums.com> wrote in message <br />news:3bc3d95a.0@webcrossing.la2eafNXanI...<br />> Hi,<br />><br />> no clue yet about integrating FCK Editor, but I managed to integrate <br />> TinyMCE and have written a tutorial (PDF, 3 pages, with screenshots <br />> etc) -- if you´d like to get this, please send a mail to <br />> info-at-cakmak-bauunternehmen.de<br />><br />> Günter Schenk<br />> Adobe Community Expert, Dreamweaver -
4. Re: Adding FCK Editor into the dynamic form wizard
(Tim_De_Rop) May 10, 2007 10:00 AM (in response to The Wackonerd)Tried FCK editor but failed :(
Email request has been sent :) to Günter -
5. Re: Adding FCK Editor into the dynamic form wizard
eokorie May 11, 2007 2:18 AM (in response to The Wackonerd)Hi, dont know if this will help, but this is what I use in order to get FCKeditor working with my works in Dreamweaver.
window.onload = function()
{
// replace all of the textareas
var allTextAreas = document.getElementsByTagName("textarea");
for (var i=0; i < allTextAreas.length; i++) {
var oFCKeditor = new FCKeditor( allTextAreas[i].name ) ;
oFCKeditor.BasePath = "/[PATH]/fckeditor/" ;
oFCKeditor.ToolbarSet = 'Basic' ;
oFCKeditor.Height = 300 ; // 400 pixels
oFCKeditor.Width = 550 ; // 400 pixels
oFCKeditor.ReplaceTextarea() ;
}
}
Basically, what happens here is that any textarea element is automatically conerverted into an FCKeditor. Hope this helps....
Regards
Emmanuel -
6. Re: Adding FCK Editor into the dynamic form wizard
(Siegfried_Thumfart) May 11, 2007 12:33 PM (in response to The Wackonerd)Hallo Emmanuel, <br /> <br />can you help me please to integrate FCKeditor: <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <table cellpadding="2" cellspacing="0" class="KT_tngtable"> <tr> <td class="KT_th"> <label for="startdatum_<?php echo $cnt1; ?>">Startdatum:</label> </td> <td> <input type="text" name="startdatum_<?php echo $cnt1; ?>" id="startdatum_<?php echo $cnt1; ?>" value="<?php echo KT_formatDate($row_rstermine['startdatum']); ?>" size="10" maxlength="22" /> <br /> <?php echo $tNGs->displayFieldHint("startdatum");?> <?php echo $tNGs->displayFieldError("termine", "startdatum", $cnt1); ?></td> </tr> <tr> <td class="KT_th"> <label for="enddatum_<?php echo $cnt1; ?>">Enddatum:</label> </td> <td> <input type="text" name="enddatum_<?php echo $cnt1; ?>" id="enddatum_<?php echo $cnt1; ?>" value="<?php echo KT_formatDate($row_rstermine['enddatum']); ?>" size="10" maxlength="22" /> <br /> <?php echo $tNGs->displayFieldHint("enddatum");?> <?php echo $tNGs->displayFieldError("termine", "enddatum", $cnt1); ?></td> </tr> <tr> <td class="KT_th"> <label for="ueberschrift_<?php echo $cnt1; ?>">Ueberschrift:</label> </td> <td> <input type="text" name="ueberschrift_<?php echo $cnt1; ?>" id="ueberschrift_<?php echo $cnt1; ?>" value="<?php echo KT_escapeAttribute($row_rstermine['ueberschrift']); ?>" size="32" maxlength="200" /> <br /> <?php echo $tNGs->displayFieldHint("ueberschrift");?> <?php echo $tNGs->displayFieldError("termine", "ueberschrift", $cnt1); ?></td> </tr> <tr> <td class="KT_th"> <label for="termin_<?php echo $cnt1; ?>">Termin:</label> </td> <td> <input type="text" name="termin_<?php echo $cnt1; ?>" id="termin_<?php echo $cnt1; ?>" value="<?php echo KT_escapeAttribute($row_rstermine['termin']); ?>" size="32" /> <br /> <?php echo $tNGs->displayFieldHint("termin");?> <?php echo $tNGs->displayFieldError("termine", "termin", $cnt1); ?></td> </tr> <tr> <td class="KT_th"> <label for="level_<?php echo $cnt1; ?>">Level:</label> </td> <td> <input type="text" name="level_<?php echo $cnt1; ?>" id="level_<?php echo $cnt1; ?>" value="<?php echo KT_escapeAttribute($row_rstermine['level']); ?>" size="32" maxlength="100" /> <br /> <?php echo $tNGs->displayFieldHint("level");?> <?php echo $tNGs->displayFieldError("termine", "level", $cnt1); ?></td> </tr> </table> <br /> <br />I want to integrate FCKeditor for the row termin. <br /> <br />Thanks -
7. Re: Adding FCK Editor into the dynamic form wizard
eokorie May 21, 2007 10:22 AM (in response to The Wackonerd)Hi Siefried,
Email me at emmanuelokorie@hotmail.com
Regards,
Emmanuel


