Hey, sorry for the delay it was the combination of a weekend plus no Internet access yesterday :-(
There is no option in Avisio to make the slider navigation buttons rather than the small images but with a little modification this can be done. Open up /framework/classes/kclass_display_slideshow.php and modify this code to use a static image rather than the dynamic images for $img:
function showThumbnails()
{
global $k_option;
$this->slider = '';
if(!is_object($this->slideshowLoop))
{
$this->slideshowLoop = new WP_Query("post_type=".$this->postType."&posts_per_page=".$this->postPerPage);
}
if($this->slideshowLoop->have_posts())
{
$this->slider = "<ul class='slideshowThumbs'>\n";
$loopCount = 1;
while ($this->slideshowLoop->have_posts())
{
$this->slideshowLoop->the_post();
$img = kriesi_post_thumb($this->slideshowLoop->post->ID, array('size'=> array($this->size),
'wh' => $k_option['custom']['imgSize'][$this->size],
'display_link' => array('none')
));
$imageLink = get_real_url(get_post_meta($this->slideshowLoop->post->ID, "_img_url", true));
$this->slider.= "<li class='slideThumb ie6fix slideThumb".$loopCount."'>\n";
$this->slider.= $imageLink != "" ? "<a href='".$imageLink."' class='slideThumWrap noLightbox'>\n" : "<span class='slideThumWrap'>\n";
$this->slider .= "<span class='slideThumbTitle'>\n";
$this->slider .= "<strong class='slideThumbHeading rounded ie6fix'>".get_the_title()."</strong>\n";
$this->slider .= "</span>\n";
$this->slider.= "<span class='fancy'></span>";
$this->slider.= $img;
$this->slider.= $imageLink != "" ? "</a>" : "</span>";
$this->slider.= "</li><!-- end .slideThumb -->\n";
$loopCount ++;
}
$this->slider.= "</ul><!-- end .slideshowThumbs --> \n";
}
echo $this->slider;
}