[eluser]Tominator[/eluser]
Hi wex69,
I'm trying hard to make Parser 2.1 compatible with HMVC. That's (in 2.1) why you can set directory 'on the fly'. In the moment, I hope InsiteFX is trying it

As sonn as it will work, new Parser will be released.
If you are interested in testing new version, there is no problem, I'll send you a copy
By the way, the model you wrote is possible, test this:
Code:
// LOAD LIBARY
$this->load->library('parser');
// SET THEME
$this->parser->theme('default');
// SET MODULE VIEW (search for Modules/A_Module/views/content_of_module.tpl
// AND DO NOT SHOW RESULT
$data['content'] = $this->parser->parse('content_of_module', array(), array('show' => FALSE));
// GENERET LAYOUT
$this->parser->parse('template',$data);
Problem is, that it will try to find appdir/views/content_of_module.tpl. But I think that's the same, what $this->load->view does.
Tom.