Well that sounds like the smarter way to do it. I searched for a media plug, but it's the same as the one that is already installed on TinyMCE. The actual media button doesn't appear on the text editor and I can't figure out where to edit TinyMCE settings or even check the version. I have the latest version of dophin installed.
@PKR
Edit this file to add media button to TinyMCE: templates/base/scripts/BxBaseConfig.php
Find: function BxBaseConfig($site)
and
editor_selector : "group_edit_html|blogText|guestbookTextArea|story_edit_area|comment_textarea|classfiedsTextArea",
plugins : "table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,media,searchreplace,print,contextmenu,paste,directionality,fullscreen",
theme_advanced_buttons1_add : "fontselect,fontsizeselect",
theme_advanced_buttons2_add_before: "cut,copy,paste,pastetext,pasteword,image,separator,search,replace,separator",
theme_advanced_buttons2_add : "separator,insertdate,inserttime,separator,forecolor,backcolor",
Chang this line:
theme_advanced_buttons2_add : "separator,insertdate,inserttime,separator,forecolor,backcolor",
To:
theme_advanced_buttons2_add : "media,preview,separator,insertdate,inserttime,separator,forecolor,backcolor",
You have added media and preview to TinyMCE on this area to:
- group_edit_html
- blogText
- guestbookTextArea
- story_edit_area
- comment_textarea
- classfiedsTextArea
if they have used TinyMCE on that area.