Removing Object from Scrollview

I can insert an object into a scrollview with

[lua]scrollView:insert(lotsOfText)[/lua]

but I need to remove it - I’ve tried:

[lua]scrollView:remove(lotsOfText)[/lua]

but this brings up errors any clue how to properly code this [import]uid: 142733 topic_id: 25080 reply_id: 325080[/import]

A scrollView should behave like a displayGroup; insert your object into a different display group and it should be removed from your scrollView. [import]uid: 44647 topic_id: 25080 reply_id: 101887[/import]

Thanks that worked [import]uid: 142733 topic_id: 25080 reply_id: 102288[/import]