How can i have several container and that one is independent of the other.
I need the second rectangle (u) is not seen on the first container ®
Thank you.
w=display.newRect(0,0,800,600)
w.x=400; w.y=300
w.alpha=0.2
r=display.newContainer(200,200)
r.x=600
r.y=200
v=display.newRect(0,0,40,40)
r:insert(v)
e=display.newContainer(200,200)
e.x=200
e.y=200
u=display.newRect(0,0,40,40)
e:insert(u)
transition.to( u, {time=6000, x=700} )
transition.to( v, {time=6000, x=-700} )