WordPress 3.2 – Problem with WYSIWYG editors in a custom post type?

as per here, add this to your functions.php

add_action("admin_head","myplugin_load_tiny_mce");

function myplugin_load_tiny_mce() {

wp_tiny_mce( false ); // true gives you a stripped down version of the editor

}