Son of a gun. I modified shortcodes with this:
elseif ($style=="qlist") :
echo '<div class="faq-questions">';
echo '<ul>';
while ($flfaq->have_posts()) : $flfaq->the_post();
$faqid = $post->ID;
?>
<li class="faq-block-item">
<a href="#<?php echo $faqid; ?>"><div class="faq-block-question"><?php the_title(); ?></div></a>
</li>
<?php
endwhile;
echo '</ul>';
echo '</div>';
and I now have a [faq style=qlist] that creates a list of links to the faqs.