i tried it in wordpress 2.7.1
it worked for me after making some changes to the wysiwyg-text-widget.php
// orig function at line ~ 115
function widget_wys_text_init()
{
wp_enqueue_script(‘editor’);
wp_enqueue_script(‘editor_functions’);
wp_enqueue_script(‘quicktags’);
}
edited//
function widget_wys_text_init()
{
wp_admin_css( ‘thickbox’ );
add_thickbox();
wp_enqueue_script(‘editor’);
wp_enqueue_script(‘editor_functions’);
wp_enqueue_script(‘quicktags’);
wp_enqueue_script(‘media-upload’);
}
I hope it will work for you guys also