i finally made it. i have put the "[promoslider category="my-category"]" code in an article and loop this article in my template …
<div class="aktuell cf">
<?php
global $myPosts;
$myPosts = '';
?>
<?php
$my_query = new WP_Query();
$my_query->query('showposts=1&cat=25&orderby=date');
if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post();
$myPosts .= $post->ID . ",";
?>
<div class="cf" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php global $more; $more = 0; ?>
<?php the_excerpt(); ?>
<?php the_content(); ?>
<h2> " title="<?php the_title(); ?>">
<?php the_title(); ?>
</h2>
<!--kasten zu-->
</div>
<?php endwhile; endif; ?>
</div>