How can I Integrate FCKEditor 2.6 in APEX???

Hello! I want integrate FCKEditor 2.6 in Apex and i need your help.
Now I use the standard html editor of Apex but i don't like the code generated for the editor...
For example, I write a text and this is the code generated for the size:
size="7" <= The HTML in Apex not recognize this html code.
However in FCKEditor 2.6, the same text, generated this code for the size:
style="font-size:...."
And this is correct in the html of Apex.
And then, the colors ... if I write two diferent sizes, with two diferent colors. In the html of Apex I see ONE size and two colors. However in FCKEditor 2.6 all is correct.
For more information, now I use the Apex 3.0.1.00.08, for the editor text I use a item with "HTML Editor Standard" and for see the results I use a report with "Standard report column"
Thanks!

Pleesee help me, I am not a expert :D
I changed, in the server, the containing of the carpet FCK for the files of new version fckeditor 2.6... and is perfect... but always there are a problems... xD
With the version 2.6:
with the file /i/fck/editor/fckeditor
Not work Ie and mozilla.
But if change the file by /i/fck/editor/fckeditor.original
- Explorer perfect.
- Mozilla ... psst... there are a many symbols in the top left.. this -> ï}}¿
but the html editor work.
And with the last version of fckeditor...with the file
/i/fck/editor/fckeditor
- Explorer not work.
- Mozilla work perfect.
and with the file /i/fck/editor/fckeditor.original
- Explorer perfect.
- Mozilla ... psst... there are a many symbols in the top left.. this -> ï}}¿
There are any solution for this?? I like change the file
/i/fck/fckeditor.js for recognized the explorer and use one file or other... but I don't have idea ...
Any idea?

Similar Messages

  • I have few muse projects how can I  integrate them in an another muse website which I have just created?

    i have few muse projects how can I  integrate them in an another muse website which I have just created? How can I make link between  HTML document inside muse. The Html document   (saved on my desktop )is another web project  done with css3 and Html but for my portfolio I need to create an HTML link  so the project can be viewed by others.

    Perhaps with iFrame Builder Lite | Exchange | Adobe Muse CC ?

  • How can we integrate SAP R/3 4.6C with SAP EP?

    Hi All,
    we are implementing PM (Plant Management) module of SAP R/3 4.6C and we have the necessity to create web services for some PM functionalities. Infact we need to integrate our SAP R/3 4.6C with other applications (non-SAP) through TIBCO (it's mandatory). So we think to use SAP XI. Moreover our users don't want to use SAP GUI for the accessing to the PM functionalities but they want an UI more friendly. So we think to use SAP EP. How can we integrate the SAP R/3 4.6C functionalities into the SAP EP?
    Thank you in advance for your help.
    Best regards,
    Bob

    Hi Bob,
    Upgrading to ECC 66.0 wouldn't effect your Developments (since everything will be custom, and upgrades will not effect the custom applications) and Customizing (there will be enhancements based on which you do customizations and even that will not be effected with upgrade) unless you change the standard using Dev Key.
    [https://wiki.sdn.sap.com/wiki/display/ERP6|https://wiki.sdn.sap.com/wiki/display/ERP6]
    Please go throught the link for all the details on upgrade.
    And you need to see whether there are applications available in WebDynpro for ABAP or Java for your req. and these you can find in latest BP for PM if there are any?
    Hope this helps.
    Cheers-
    Pramod

  • How can I integrate add-ons into a PDF (Use Adobe Acrobat (in Firefox), such as Babylon English Dictionary?

    How can I integrate the Fox add-ons into a PDF (Use Adobe Acrobat (in Firefox), such as Babylon English Dictionary? Many PDF do support my add-ons. BTW, the PDF in question is one that I have uploaded to my web site.

    Babylon would need to support Adobe Acrobat for that to happen.

  • I have iOS 6 on my iPhone. i have linked my contacts with facebook and yahoo, which has doubled or triplicated some of the contacts. how can i integrate them into one? please help. it is getting on my nerves. thanks :)

    I have iOS 6 on my iPhone. i have linked my contacts with facebook and yahoo, which has doubled or triplicated some of the contacts. how can i integrate them into one? please help. it is getting on my nerves. thanks

    click on the contact which you want to integrate, click the edit button scroll down u will find a option called link contacts use it to link it to the duplicate contact

  • How can we integrate Datawarehouse to Microsoft sharepoint ECM?

    hi,
    how can we integrate Datawarehouse to Microsoft sharepoint ECM??
    what is oracle product & toll that support it.
    Regards,
    AMSII

    Hi,
    According to your description, you might want to integrate with JUKEBOX API and P4A Systems to SharePoint 2013.
    I would provide some suggestions about how to access the data of SharePoint, for the JUKEBOX API part, as it is not supported in this forum, I would suggest you find
    the related resource in the corresponding forum.
    For about how to interact with SharePoint 2013 programmatically, the links below would be helpful:
    SharePoint 2013 .NET Framework client object model (CSOM)
    http://msdn.microsoft.com/en-us/library/office/fp179912(v=office.15).aspx
    Other APIs available:
    http://msdn.microsoft.com/en-us/library/office/dn268594(v=office.15).aspx
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • How can I integrate PDK to JDeveloper 11?

    How can I integrate PDK to JDeveloper 11?

    Hi,
    you can find all information on the following link
    http://www.oracle.com/technology/products/ias/portal/html/installing.pdkjava.v2.html
    Regards.
    Jeff

  • How can i run unix script from my apex page

    how can i run unix script from my apex page and take the output of unix script as a hidden variable and display it on the report region of that page

    I had a requirement to run a Fortran program against some data that woudl be extracted from the database after the user set up their filtering criteria and made some additional input. SInce the program was to complex to conver to PL/SQL, we decided to try and invoke it from Apex. This is how I did it.
    1. I followed the steps in Tim Archer's excellent article "Oracle External Procedure to Run Host Commands" (http://www.timarcher.com/?q=node/9). If the link does nto work, google the article's title.
    Using this steps I created a function which accepts any OS command, including calling my own shell scripts, and runs them. I called my PL/SQL function "shell" instead of "USF_RUN_HOST_CMD " as Tim did in his example (step 9).
    2. In Apex,
    a. I created a button to run my shell command. (I named it P2_RUN_SHELL)
    b. I created a PL/SQL process whose source looks as follows:
    shell('/home/ackness/scripts/cr_xcf_file.sh > /tmp/cr_scfp_file.log');
    and which was conditioned on the the button P2_RUN_SHELL.
    It works like a charm.
    Note: since you can run your own scripts using this method, you can encapsulate a series of commands in a UNIX shell script and invoke that script from Apex. This allows you to be able to test or run you commands from the command line as well as Apex and makes it easier to develop/debug/enhance the scripts in the future.
    Ackness

  • How can i integrate BI & Portal (Seperate SERVERS)

    Hi Everyone,
        i was wondering if it's possible to integrate 3 BI systems into 1 Portal.
    We have 3 BI (AS ABAPAS JAVABI JAVAEP) systems and 1 EP (AS JAVAEP CORE+EP).
    What i want to do is integrate the 3 BI systems into Using the EP systems, so when i create a
    WAD or Bex & execute them it should always use the SEPERATE EP instance & not the EP in
    the DUAL STACK....
    Is this possible.. ?? ?if so how can i do it ????

    read the installation manual

  • How can I integrate a "fill in your name form" on my iWeb site ?

    Hello,
    I am looking for a contact page in the iweb. A contact sheet where I can have my clients fill in theirs name,adress and e-mail adress and leave a comment. Is there one ? or how can I easily create one ?
    Please let me know ,
    friendly yours
    gunilla in paris
    MacBook   Mac OS X (10.4.10)  

    http://www.varkgirl.com/Varkgirl/Add%20forms.html
    if you want the info emailed to you
    or
    http://www.varkgirl.com/Varkgirl/Popup%20Guest%20Book.html
    if you want it to show up like a guestbook
    or
    http://js-kit.com/comments/
    for a different option that shows up directly on the page
    You can add just about any type of html code, widget, or add-on to your iWeb site if you are willing to do a little post-publish editing.
    Basic Instructions are here:
    http://iweb.varkgirl.com
    (Click on the first "tip" link in the list)
    Disclaimer: My website contains various ads, so if you click them while visiting my site, I will receive financial compensation, which I use for materials for my classroom.

  • How can I integrate CommPort into the JBuilder??

    I just downloaded this package and I can�t integrate it into my JBuilder 6 personal API. I copied every file the readme says to both lib and bin directories but nothing. I cant import it from javax!! I really need some fast help on this please. Thanks.

    Select from the main menu:
    Tools->Configure Libraries
    Press the 'New' Button
    Set the Name and Location to your own preferences i.e. 'CommApi' and "UserHome'
    Press the Add Button
    Select the commapi jar file.
    Then select from the main menu
    Project->Project Properties
    Select the RequiredLibraries tab
    Select the Add button
    Select the library as created above. i.e. 'CommApi' from 'UserHome'
    Dave

  • How can i integrate several transaction codes into a single report?

    Hi.. I am faced with a situation wherein i need to create a report. The output of the report is the combined output of the outputs of two or three standard sap transaction codes.. how can i code my report ? i tried to capture suitable portion of codes from the standard program of the t-codes, but analysing the program itself is taking a long time.. please help.. thanks in advance.

    Hi,
    Ask ur functional people and know abt the functionality of all three tcodes and summarize the common tables and fields. Add the fields which are not common and know abt the report output ( in which format ALV or Normal Interactive report).  Check any dynamic internal tables need to be constructed for this. Check it shud be run in bgrnd r foreground. If it is foregrnd then check the output limit.
    Regards
    Kannaiah

  • How can i integrate adobe flex into muse?

    Working with Flex and changing the skins is just not my thing, so please tell me how can i create a website thru Muse and still use flex developers applications running on the site?

    Since flex publishes SWF files. Muse support SWF (Flash) files. Embed the codes generated in flash builder (Not the entire HTML but the codes starting from the flash embed stuff, you should be familiar with those codes) that would be found in the HTML as arbitrary HTML into Muse and your Flex application will run smoothly. (Except their is a bug in Muse, it should work).

  • How can I integrate a .sub file into an mp4 movie

    I have an normal mp4 movie and subtitles in an .sub file. How can I combine them without Quicktime Pro? Is there a chance with Perian, iMovie or iDVD?
    Thanks

    You can burn them as separate files and play them with VLC player but it won't burn them as a single file with hard-encoded subtitles. If somebody tries to watch the movie with a program that doesn't support using .sub files at the same time as viewing the mp4 (like VLC) then they won't see the subtitles. If you are trying to do that then as far as I am aware you will have to re-encode the mp4 into another mp4 along with burned-in subtitles. As I said before, I don't know which software to use to do that, and if you do it you will also lose quality on the video due to multiple encoding.

  • How can I integrate a Topaz signature pad to place the signature on the document?  It is a certificate signature on the pad that isn't going onto the document.

    Adobe doesn't support a signature pad for Adobe Acrobat but the Topaz pad sees and registers the signature on the computer but not on the document?  Suggestions would be greatly appreciated.

    Hi Mary,
    Did you not get software from Topaz along with the signature pad? You should have gotten a file called signplus.exe (or gemsignplus) that installs the software that integrates the Topaz signature pad with Acrobat. Then you need to go to the Signature Creation preference and select Topaz as the default signing method. You can also select Always ask and then you would be prompted to select either Topaz or the traditional Acrobat digital signature when you click on a signature field.
    How to get to the signature preference depends on the version of Acrobat you are using. If you let me know I'll give you the exact steps.
    Steve

Maybe you are looking for

  • I updated my reader to version 10.1.6 and now my javascript email button does not create an email???

    Our business has updated Adobe reader to 10.1.6.  I have a BUTTON that I use to send an email using Javascript but now it will not work and sometimes it freezes up.  When I open the same file in Acrobat Pro X it works fine.  I need it to work in Adob

  • Can't create user into backend system and contents in portal.

    hi expert, I installed EP(EP,BI-JAVA) as add in installation on existing BI-ABAP system based NW04s. I can log on portal by abap user. But unubale to create any content and user in ABAP through portal. What must be done after setup Addin JAVA STACK??

  • Error when installing WEB AS JAVA on HPUX.

    The environmantal variables are set. JAVA_HOME=/opt/java1.4 and PATH=/opt/java1.4/bin its showing the version and even it works when i do echo $JAVA_VERSION. i tried with sdk1.4.2.8 and aslo with version sdk1.4.2.6 for both it give the same error. ER

  • Elements won't install on my Mac

    When trying to launch setup I get an error message telling me that my OS (10.6.2) maybe not supported or that the disk is read-only and that I ideally should have my disk formatted w/o a difference between Capital and small letters. Version of Elemen

  • I have CS5 which has stopped printing on my Epson R2880,

    I have downloaded the drivers for the printer again but Epson say there is no problem with the printer as it prints ok from Microsoft and Apple products, I reloaded CS5 from the original disc, still no joy so downloaded S5 again, after uninstalling,f