I\'m creating a meta box for my custom post type. There are multiple fields where I would like to use wysiwyg editor rather than . Is is possibl
This did the trick for me:
http://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/
It's basically creating your textarea with an id, then calling from js:
tinyMCE.execCommand('mceAddControl', false, 'your_textarea_id');
Hope it helps!