Plugin: media

This plugin handles embedded media such as QuickTime, Flash, ShockWave, RealPlayer and Windows Media Player. It has two output methods one is normal embed/object tags and the other is javascripts the later was added to workaround the IE embedded media issue, read more about that in this article.

Installation Instructions

Initialization Example

tinyMCE.init({
	theme : "advanced",
	mode : "textareas",
	plugins : "media",
	theme_advanced_buttons1_add : "media"
});

Using the JavaScript output method

Object/embed tags are outputed to the HTML code by default when using this plugin but there is an alternative JS output method. This enables you to workaround the issue with IE not beeing able to "seamlessly embed" media objects in a HTML page due to a law suite.

You will have to add a specific media embed script to your page inorder to use this output method. This script includes the functions needed to output the various media types using a document.write method. This script is located at this path "tiny_mce/plugins/media/jscripts/embed.js". Add this script to your page header.

We recommend that you copy the script our from the TinyMCE directory to your sites/systems script directory since deeplinking into TinyMCE from pagelevel isn't recommended since files such as this might be moved in the future.

Example on how to add the script to your page header:

<html>
<head>
	<script type="text/javascript" src="embed.js"></script>
<head>
<body>
	Some page with a TinyMCE instance.
</body>
</html>

Media plugin options

[media_use_script] True/false option that gives you the ability to have a JavaScript embed method instead of using object/embed tags. Defaults to: false
[media_wmp6_compatible] True/false option that enables you to force Windows media player 6 compatiblity by returning that clsid, but some features and options for WMP may not work if you use this option. You can find a reference on these options at w3schools. Defaults to: false
[media_skip_plugin_css] Skips the loading of the default plugin CSS file, this can be useful if your content CSS already defined the media specific CSS information, Defaults to: false.
[media_external_list_url] URL to a JS file containing files to be listed in the media dropdown list simmilar to the one found in the advimg dialog.
[media_types] Name/Value list of format mappings to file extensions. Defaults to: flash=swf;shockwave=dcr;qt=mov,qt,mpg,mp3,mp4,mpeg;shockwave=dcr;wmp=avi,wmv,wm,asf,asx,wmx,wvx;rmp=rm,ra,ram.