Non image composite object

What is the best way to create a non image composite object? I want to draw a shape using the graphics object and put random text in it, then have many of this object, draggable with different text. Should each object be a Scene? Or just classes with create methods? Something else? I guess this is similar to movie clips in Flash? Cheers.

Container.

That looks more lightweight than using a scene. Presumably has potential to be less performant than having an array of rectangle graphics and separate text which has to be programmatically set to follow the shape and is more messy than containers. Thank you.