How to make scroller that could scroll pictures?

Hmmm… HOw do you guys make scrollers that could scroll pictures??? Wat is the code for that??

http://www.kirupaforum.com/forums/showthread.php?s=&threadid=24771&highlight=scroll+anything

actually i was thinking of a more simpler one…

heres a simple unrefined idea which i made (can probably be imrpoved!!)

this goes ON A CLIP which contains

  1. the object you want to scroll (covered by a mask)
  2. and the scroll buttons
    [AS]
    onClipEvent (enterFrame){
    if( x == “+1”){
    b._y–;
    }
    if( y == “+2”){
    b._y++;
    }
    }[/AS]
    this goes inside the clip on the buttons
    [AS]
    on( press ){
    x = +1;
    }
    on( release, releaseOutside ){
    x = 0;
    }
    [/AS]where +1 is scroll up and on scroll down put +2
    then name the scrolled object ‘b’ in this case and away you go