do you mean like a menu system?
you can do it, but you have to "fake" it. Meaning, not actually scroll the screen, but rather scroll the items.
so if your window only can fit 5 items.. and you have 7 items.
you start with:
1
2
3
4
5
and if the player pushes the down direction once, you show:
2
3
4
5
6
and pushes down again show:
3
4
5
6
7
so you can just make empty box slots on your screen and On Start of Layout loop through them and put the level sprites on top of them depending on where the player is in the menu system.