Plugin: flash

This is the "Insert Flash" Dialog, it enables users to insert flash movies into TinyMCE.

You can control the wmode, quality and menu by setting the flash_wmode, flash_quality and flash_menu options.

Installation Instructions

Initialization Example

tinyMCE.init({
	theme : "advanced",
	mode : "textareas",
	plugins : "flash",
	extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]"
	flash_external_list_url : "example_flash_list.js", // Optional URL to a list of SWF movies
	flash_wmode : "transparent",
	flash_quality : "high",
	flash_menu : "false"
});

Additional note

The flash plugin has been heavily modified (the original is editor_plugin_original.js) since the original did not play nicely with html content that already contained existing flash tags and in fact stripped out the object tags for existing flash html. The rewrite corrects this as well attempts to preserve the existing flash tags where possible. The tinyMCE.init call should be be something like:

Initialization Example

tinyMCE.init({
	theme : "advanced",
	mode : "textareas",
	plugins : "flash",
	extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name|obj|param|embed]"
});

Note the extra obj,param,embed attributes for the img tag. These attributes are used to serialize data from existing flash tags so that they can be properly restored. Editing a flash tag with the plugin will cause this information to be lost (sorry!) but still produces a working flash nevertheless.