Question
iOS6 - Using a "z" property of display objects makes them vanish
I recently did the upgrade to AIR 3.4 for my app and I am testing on iOS6 on an iPad 2 & 3.
When I assign any display object a "z" value, it disappears on iOS.
var ball:Sprite = new Sprite();
ball.graphics.beginFill(0x000000,1);
ball.graphics.drawCircle(0,0,100);
addChild(ball);
ball.z = 0;
ball is no where to be found
I am also using GPU mode
