Ibrowser and tinymce: nothing happens when the ibrowser icon is clicked

I installed the ibrowser plugin. Do everything in here and here

Add javascript as below:

<script type="text/javascript">

tinyMCE.init({

theme : "advanced",
mode : "textareas",
plugins : "ibrowser",
theme_advanced_buttons3_add : "ibrowser"

});

function toggleEditor(id) {
  if (!tinyMCE.get(id))
  tinyMCE.execCommand("mceAddControl", false, id);
  else
  tinyMCE.execCommand("mceRemoveControl", false, id);
}
</script>

but nothing happens when the ibrowser icon is clicked. (already with "var ib = null;") Any idea to solve the problem? thanks in advance

+3
source share
1 answer

Hi jasmine.

I used TinyMCE for almost two years, and I use its own plugins for processing files and images ( MCFileManager / MCImageManager ).

iBrowser, Firefox 2 , Firefox 3, Internet Explorer Safari. , iBrowser Javascript, , , .

- MCFileManager MCImageManager , TinyMCE, , .

, , , , TinyMCE Ajax File Manager, , TinyMCE.

, , alt text http://demo.phpletter.com/tiny_mce/themes/advanced/images/browse.gif Image Url

TinyMCE Ajax File Manager:

  • Javascript, Tinymce FCKeditor.
  • AJAX PHP .
  • .
  • (utf-8)
  • ,
  • Media Previewable (, )

. , .

.

+1
source

Source: https://habr.com/ru/post/1741124/


All Articles