fills in the select values based on the form name and the tag name
and adds code to check if the object variable matches them. If flexyignore is
used, it is left alone. If static is set, the currently defined options will be used.
$form = new HTML_Template_Flexy();
$form->compile('some_file_name');
// create an instance (note you dont have to specify any details..)
// select options
$elements['test_select'] = new HTML_Template_Flexy_Element;
$elements['test_select']->setOptions( array(
'123' => 'a select option',
'1234' => 'another select option'
));
$elements['test_select']->setValue('1234');
$form->outputObject(new StdClass, $elements);
// in the example below, the new data you have added is to the existing attributes