I got that one working for me… but only with a little hack.
I did the following:
init function:
wp_enqueue_script( 'word-count' );
wp_enqueue_script('post');
if ( user_can_richedit() )
wp_enqueue_script('editor');
wp_enqueue_script('thickbox');
wp_enqueue_script('media-upload');
admin panel:
<div id="poststuff">
<div id="titlediv">
<div class="inside">
<h3 id="title">Titel</h3>
<div id="edit-slug-box"> </div>
</div>
</div>
<div id="postdivrich" class="postarea">
<?php the_editor($partner->desc, $id = 'content', $prev_id = 'title', $media_buttons = true, $tab_index = 2); ?>
</div>
</div>
And in the post.js (you’ll find it in wp-admin/js) the function tag_update_quickclicks() needs to be changed.
Wrap its content in:
if(jQuery( '#tags-input' ).length) {
...
}
While I have to say the only thing which didn’t work without that last hack was the media buttons. (You’d get the popup, but you won’t be able to select any image (uploading was ok, but wasn’t worth bandwith when you could not use the image later).
Maybe this will help someone to figure out a way for him/herselfe…