I normally use Firefox for every web based work. Everything works fine (CMSMS and TinyMCE).
But a friend of mine will probably work with IE. So I tested the site with IE. Bad awakening. The complete input area is missing (see screenshot).
Also tested with Opera. Only the HTM -content is shown.
How can I get TinyMCE work with them nice tools?
System:
CMSMS 0.11beta
TinyMCE 2.0 RC3 (happens the same way with 1.2)
IE 6.0 (if I visit http://tinymce.moxiecode.com/example_fu ... ample=true IE works fine)
Opera 8.50 (The example on http://tinymce.moxiecode.com/example_fu ... ample=true does not work either)
[attachment deleted by admin]
TinyMCE and Internet Explorer / Opera
-
tigercat
Re: TinyMCE and Internet Explorer / Opera
Hi everybody.
This is really curious. Problem still unsolved. Still editing module file TinyMCE.module.php.
Some more tries ... see below.
(1) I am using this code for TinyMCE to run within CMSMS:
This code shown with FIREFOX 1.0.6 Potable works FINE .. Workarea is shown.
This code shown with INTERNET EXPLORER does NOT WORK at all .. it only shows HTML code.
This code shwon with OPERA 8.50 does NOT WORK at all .. it only shows HTML code.
(2) If I use some kind of very basic settings it even WORKS WITH INTERNET EXPLORER.
But now the button for inserting an image is missing .. I need it ..
It seems that theme="simple" is the only way to get TinyMCE work within CMSMS?
I wonder if this is a problem of CMSMS. Probably the settings of TinyMCE and CMSMS interact and cause problems.
For any further ideas I will be very thankful.
This is really curious. Problem still unsolved. Still editing module file TinyMCE.module.php.
Some more tries ... see below.
(1) I am using this code for TinyMCE to run within CMSMS:
Code: Select all
<__script__ type="text/javascript" src="http://localhost/test/cmsms/modules/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js"></__script>
<__script__ type="text/javascript">
tinyMCE.init({
mode : "exact",
theme : "advanced",
elements : "content_en",
content_css : "../stylesheet.php?templateid=6", /* file path is automatically generated by PHP */
theme_advanced_buttons1_add : "fontselect,fontsizeselect",
theme_advanced_buttons2_add_before: "cut,copy,paste,separator",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
});
</__script>This code shown with INTERNET EXPLORER does NOT WORK at all .. it only shows HTML code.
This code shwon with OPERA 8.50 does NOT WORK at all .. it only shows HTML code.
(2) If I use some kind of very basic settings it even WORKS WITH INTERNET EXPLORER.
Code: Select all
<__script__ type="text/javascript" src="http://localhost/test/cmsms/modules/TinyMCE/tinymce/jscripts/tiny_mce/tiny_mce.js"></__script>
<__script__ type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "simple"
});
</__script
It seems that theme="simple" is the only way to get TinyMCE work within CMSMS?
I wonder if this is a problem of CMSMS. Probably the settings of TinyMCE and CMSMS interact and cause problems.
For any further ideas I will be very thankful.
Re: TinyMCE and Internet Explorer / Opera
WYSIWYG editors are not working in the current versions of Opera because it lacks support for designMode. It seems like this will be implemented in version 9.
-
cyberman
Re: TinyMCE and Internet Explorer / Opera
Thx - a little correction
.
... with Firefox and IEcyberman wrote: Hmm, with TinyMCE 2.0.1 it works for me ...

