tinymce

Firefox: If needs spellcheck?

Possible Duplicate: Javascript: I have a custom right-click menu but still want the spellcheck! Is there a JS property or command to see if a word is underlined in red (ie. needs to be spellchecked) in Firefox? Ideally, for sample code it would be like... if I right click on a word the is underlined in red it will alert: //wat...

How to change background of TinyMCE ?

I have just install TinyMCE editor for my website. But the default background is black and text colour is gray. Anybody can tell me how to change background to white and text colour to black. Thanks you verry much. ...

TinyMCE or SmartGWT Rich Text Editor for my GWT app?

I want to add a rich text editor to my GWT application. TinyMCE is one candidate, and so is the rich text editor in SmartGWT. Do you have any advice about choosing between the two? ...

Spellcheck in TinyMCE without PHP/.NET?

We would like to use the TinyMCE spellcheck function but without having to install PHP or .NET. Has anyone successfully done this? We are currently using Windows Server 2008, IIS 7 and Perl. ...

How do i prevent tinymce from removing multiple return in wordpress?

Wordpress doesn't allow to insert more than 2 new lines in a post, anyone knows how to avoid that? ...

tinyMCE instance using ajax works only once

I have to initialize tinymce from the ajax-requested script get.edit.php. get.edit.php contains <textarea id="tinymce" rows="8" cols="80" style="width:100%"></textarea> <script type="text/javascript"> $("#tinymce").tinymce({ /* lot of tinymce data */ }); </script> and loads data into <div id="calldata"> in the main sc...

tinyMCE with ExtJs, not defined error

I'm trying to implement a tinyMCE editor into an ExtJs environment. But it's not going well. First things first: Include the necessary scripts. <script src="js/jquery-1.2.1.min.js" type="text/javascript"></script> <script src="ext-2.3.0/adapter/jquery/ext-jquery-adapter.js" type="text/javascript"></script> <script src="ext-2.3.0/ext-...

TinyMCE is changing my inline CSS

I input this in the HTML editor: <p style="border:1px solid #edede4;border-top:none"></p> I click update, and click the html editor again. The HTML (in Firefox) has changed to: <p style="border-style: none solid solid; border-color: -moz-use-text-color rgb(237, 237, 228) rgb(237, 237, 228); border-width: medium 1px 1px;" mce_style=...

TinyMCE and Viewstate verification failed. Reason: Viewstate was invalid.

Visual Studio 2008 .NET 3.5 I'm using the built in web server to test, and everything works fine. My TinyMCE code is the following: <!-- TinyMCE --> <script type="text/javascript" src="/tiny_mce/tiny_mce.js"></script> <script type="text/javascript"> tinyMCE.init({ // General options mode: "textareas", theme:...

Extending TinyMCE to show a list of possible Internal pages which the user may wish to link to

Is it possible to extend the TinyMCE rich text editor to allow the insertion of Internal Links to my web sites pages. I already have a function which can return the list of page names and URLs however I cannot figure out how to add a new button to the Advanced Link plugin. I have worked with the Image Manager and Document manager plugi...

How to disable drag and drop event into the tinymce editor

Hello all, I want to disable drag and drop text and image into the tinymce Editor (textarea). I tried to search on the web and still cannot find the working answer. Can anyone please provide me the snippet that i can work around ? Thanks much. Anyone ? :( ...

Compare TinyMCE and CKeditor for a Wiki

For a custom wiki django-wakawaka, i want to be able to add a WYSIWYG support. TinyMCE is obviously the most popular plugin, used even by Wordpress. But CK-editor seems more feature full. Those who have used either of these or both, which is better and why. Are there some better packages, that I am missing? Is there something that I ...

One instance of tinyMCE, moved between multiple text-areas?

Hi everyone. Using tinyMCE jquery version. I have a content page where there could be many pieces of text which are clickable. So when a user clicks on one of these elements, we want to replace the DIV with the text with a tinyMCE instance containing the text. So originally, I had it calling $.getScript('/js/tiny_mce/jquery.tinymce.j...

TinyMCE commands or object API?

The popular TinyMCE rich text editor has an API for interacting directly with various classes, and it has a command-based API based around the 'execCommand' and 'execInstanceCommand' methods. I notice that, in some cases, the one operation can be performed via either API; so which one should I prefer? ...

Tinymce - Convert image url to html image url

Hi, This is question about tinymce... Current image editor is slow for because it demands opening popup for every new picture I want to add. I have my own external image gallery where each image contains it's url so copy-paste of url's is very easy and fast... I would like to have button similar to Bold that does following: To editor I p...

Tinymce - insert html code

Hello folks, I would appreciate if there is someone who can help me solve this problem, I've been trying to resolve it for few days, but with no success. I made custom button that inserts image into code, and here is textual version: <a href="javascript:;" onmousedown="tinyMCE.execCommand('mceInsertContent',false,'<br><img alt=$img_titl...

TinyMce - Copy/paste changes url of image

Hi, On my site I use url rewrite mode and probably that's causing troubles... I use my own image insertion and it works fine (I enter image abolute url and using button it is converted to html tag). Problem occurs only when, in editor, I copy (or cut) picture (which has absolute url) and then paste it again to text. Pasted version of ur...

Formatting problem with Tiny MCE

I've got a setup with multiple text area's on multiple jQuery tabs, all making use of Tiny MCS for WYSIWIG editing. I'm using jQuery to control the size of the text areas to keep them uniform, but I'm running into a problem. Only the text areas on the first tab are sized correctly - the rest default to 20 columns. If I remove Tiny MCE fr...

TinyMCE adds <pre> tag when inserting from Word

I have several Drupal 6 sites which use the WYSIWYG module along with TinyMCE. For one of my sites, whenever I use the Paste From Word icon, it adds a < pre > tag with the class "mceItemHidden". In addition, if the text is long enough, it does this strange thing where I click the "Insert" button in the Paste from Word window, the text ...

TinyMCE Configuration

I would like to setup TinyMCE to allow literally any HTML without any cleaning whatsoever. I have tried mirriads of different settings, yet none of them eventually satisfied my needs. I also need to have an option to make TinyMCE strip any styling from pasted text, and just leave the Ps and the ULs et cetera. ...