13
BINGO!!! You can make the ajax tabbed content module work by using Herve's solution I linked in the last post, and adapting it the way I did:
<?php include 'mainfile.php'; include 'header.php'; include_once XOOPS_ROOT_PATH.'/class/template.php'; include_once(XOOPS_ROOT_PATH.'/modules/marquee/blocks/marquee_bloc.php'); $result = b_marquee_show(explode('|','1')); $tpl = new XoopsTpl(); $tpl->assign('block', $result); $tpl->display('db:marquee_block01.html'); #include 'footer.php'; break; ?>
(I did that one for a plain page with the content from a marquee block. By using that and Herve's tutorial you can extract any block content from any module into that ajax tabbed content gizmo.)
I called that test.php. See it here:
http://manufacturedsand.com/test.phpAs you can see... Just the content of a block on it's own plain page. Exactly what the tabbed content thing calls for.
Next I will fill that tabbed gizmo with recent forum posts, recent headlines, news articles, etc. by using the same process for different blocks.

I hope that helps.
Magick can never be restrained, but when freely given is thrice regained!