maybe this article will help you to find some existing plugin: http://speckyboy.com/2010/06/30/top-10-content-slider-plugins-for-wordpress/
I've customized wp-featured-content-slider in my agency blog to show only some categories in the slider, but it's not a plugin parameter you can configure in the admin section.
In your theme, you'll have to combine tests like :
if (is_category('XXX'))...
and
query_posts( 'cat=XXX' )
before the loop to only query the posts of the current category (see query_post codex page).
Hope this will help you!