figured out a complicated way of doing this...in case anyone out there had a similar problem:
1- create an EZ page with the name you want and note its ID
2- edit templates\template_page_default.php, changing:
PHP Code:
echo $var_pageDetails->fields['pages_html_text'];
to
PHP Code:
if ($var_pageDetails->fields['pages_id']=="YOUR_ID"){
require($template->get_template_dir('SCRIPT_NAME.php',DIR_WS_TEMPLATE, $current_page_base,'SCRIPT_DIR'). '/SCRIPT_NAME.php');
} else {
echo $var_pageDetails->fields['pages_html_text'];
} ?>
place your script in the templates/CUSTOM/SCRIPT_DIR directory