ScrollView in a display group

Is it possible to put Scrollview in a group so I can move it on or off the screen via a transition or even just make it invisible. I basically want to be able to call it onto the screen and then get rid of it when I want.
I’ve fort it taking up half the screen in Landscape mode with an Image on the left which seems to serve as a mask. I am using the sample code as my base.

[import]uid: 142733 topic_id: 24971 reply_id: 324971[/import]

after a lot of searching i figured it out.
my problem is I was not using the scrollview widget. The old one apparently would not go in a display group and you need to add .view after the name of your scrollview. In my case scroller.
[lua]local someGroup = display.newGroup()
someGroup:insert( scroller.view )
someGroup.x, someGroup.y = 428 , 0[/lua]
[import]uid: 142733 topic_id: 24971 reply_id: 101879[/import]