I am trying to setup a custom post type in WordPress that contains a textarea that I want to turn into a TinyMCE WYSIWYG editor. The second-to-last post on this thread shows how to embed JavaScript that will call TinyMCE on the text editor. However, when I try to use it, I get a JavaScript error that tinyMCE is not defined.
It looks like the problem is that because the post type doesn't have content, the editor JavaScript (which includes the global tinyMCE object) isn't being included in the admin page. How do I include these scripts so that I can then access tinyMCE?
Thanks,
-Nate