wordpress 3.5 tinymce height

@frabiacca:
I’m not sure if you meant the toolbar menu, like Circle B showed or the height of the writing place. If it’s the latter you can :

  • do it easily by gragging the bottom right corner or the textarea or clicking on the fullscreen button of the editor 😀

  • do it programmatically

codex.wordpress.org/TinyMCE

function wptiny($initArray){
    $initArray['height'] = '600px';
    return $initArray;
}
add_filter('tiny_mce_before_init', 'wptiny');

but this doesn’t seem to work though it should