Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/07/2011, 03:51
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años
Puntos: 834
Respuesta: TinyMCE no funciona

Si mal no recuerdo, tendrías que agregar el selector css que indique cuál/es textareas deseás convertir en editores:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
<
html xmlns="http://www.w3.org/1999/xhtml"
<
head
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
<
title>pruebas</title
<
script  type="text/javascript" src="/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>  
<script  type="text/javascript"> 
tinyMCE.init({ 
      mode : "textareas", 
      theme : "simple", editor_selector : "mceEditor"
   }); 

</script>  
</head> 

<body> 
   <form method="post" name="tinymce"> 
      <textarea class="mceEditor" name="texto" cols="50" rows="15"></textarea> 
   </form> 
</body> 
</html> 
En el ejemplo indico el selector de clase "mceEditor" el cual hace referencia al valor del atributo class del textarea.
No uses el atributo language en el tag script: es obsoleto.