Tengo un formulario con un campo texto que se basa en el editor tinymce
el editor se inicializa al inicio del script....
pero me interesa que dependiendo del estado de una variable POST que recibe el formulario un campo determinado del editr tinymce que es readonly coga un valor 1 o 0 para permitir editar el campo o no...
<script language="javascript" type="text/javascript">
tinyMCE.init({
language : "es",
theme : "advanced",
mode: "exact",
elements : "texto",
theme_advanced_toolbar_location : "top",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator ,"
+ "justifyleft,justifycenter,justifyright,justifyful l,formatselect,"
+ "bullist,numlist,outdent,indent",
theme_advanced_buttons2 : "link,unlink,anchor,image,separator,"
+"undo,redo,cleanup,code,separator,sub,sup,charmap ",
theme_advanced_buttons3 : "",
height:"300px",
width:"500px",
file_browser_callback : 'myFileBrowser'
});
</script>
<textarea id="texto" name="texto" rows="15" tabindex="4" cols="80"><? echo $sContenido;?></textarea>
si sscontenido contiene 1 debo poner readonly a 1 y si no a 0
a alguien se le ocurre como debo hacerlo o plantearlo al menos?