Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/02/2007, 04:59
Avatar de yournightmare86
yournightmare86
 
Fecha de Ingreso: abril-2006
Ubicación: Madrid
Mensajes: 875
Antigüedad: 18 años, 9 meses
Puntos: 9
Re: Duda sobre Tiny MCE

Encontré la solución. Por si a alguien le es útil aquí está.
Código:
<script language="javascript" type="text/javascript" src="jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
	 mode : "textareas",
				theme : "advanced",
				theme_advanced_toolbar_location : "top",
				theme_advanced_layout_manager : "SimpleLayout",
				verify_html : "false",
				verify_css_classes : "false",
				plugins : "zoom,advlink,emotions,iespell,style,advhr,contextmenu,advimage,",
				
                 apply_source_formatting : "false",
				valid_elements : "*[*]",
				extended_valid_elements : "*[*]",
				auto_reset_designmode : "true",
				trim_span_elements : "false"
});