< TitleFrame | CodeSamples | actornode >
-- untested codesample -- create a container at 10,10 width width=100, height=100 con = Container:new(10,10,100,100) -- add a button to the container - it will be clipped -- on the borders of the Container con:add(Button:new(0,-10,200,30,"test")) -- add the container to the rootcontainer Container.getRootContainer():add(con)
