I may not have expressed myself very well, and made a mistake at the crucial point--I will try again.
I am using 'wp_enqueue_script' to insert javascrip into the head (to configure TinyMCE). I really don't want to do this on every page as TinyMCE gets used in many configurations--I just want to configure TinyMCE on my own page. How can I determine that I am on one of my own administrative pages in some code on the 'admin_menu' hook?
Normally code specific to your page gets placed in functions attached to the apropriate hooks (such as 'add_options_page'). But once this code has been activated it is too late to be queueing up javascript, soo I have to find out whether my admin page is being displayed at an earlier point in the process (e.g., on the 'admin_menu' hook). Unfortunately the 'page' parameter in the $_POST arguments, used to select the admin page to display, seems to have been processed and removed by the time I come to insert (or not) the java script on the 'admin_menu' hook. None of my searches of the codex and source code have yet yielded the variable, function or class that I can use to find this information. I hope this is clearer. Sorry for the confusion.