Video comes in front on stage automatically after android app activate/deactivate
Hi,
I overlayyed TextField over video on stage.
video and textfield is added on stage like
stage.addChildAt(video,0);
stage.addChildAt(textfield,1);
video.attachNetStream(netstream);
the above source code works perfect for android air app If I don't activate/deactivate the app.
But If I deactivate the app by tapping home and then activate the app (by tapping the app icon), video becomes on top of textfield.
How can I push the video below the textfield?
I have checked the video index its 0 and I have also tried to remove the video and add it back on stage at index 0 but that also does change anything.
Thanks for your help!
