StageText appears above popup (Flex)

2017-05-03 Thread Erik J. Thomas
Hey all: When I popup an Alert dialog that covers a TextInput control (TextInput uses the StageText implementation from mobile theme), the text shows as having a higher Z-Order than the popup Alert dialog: Any ideas how I might work around this? I don't want to set the TextInput controls to

Re: StageText appears above popup (Flex)

2017-05-03 Thread Erik J. Thomas
I found this post, but changing the skin causes a different problem. https://www.flextras.com/blog/index.cfm/2012/5/1/Why-does-a-TextInput-appear-above-my-Popup-in-Flex-46 Changing the skinClass to spark.skins.mobile.TextInputSkin causes the input cursor to show up a good 80px to the right and w

Re: StageText appears above popup (Flex)

2017-05-04 Thread quick6black
try the scrollingstagetextinput skin -- View this message in context: http://apache-flex-users.246.n4.nabble.com/StageText-appears-above-popup-Flex-tp15169p15183.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: StageText appears above popup (Flex)

2017-05-04 Thread Josh Tynjala
Try removing focus from the TextInput when you show the Alert. - Josh On May 3, 2017 3:11 PM, "Erik J. Thomas" wrote: > Hey all: > > When I popup an Alert dialog that covers a TextInput control (TextInput > uses the StageText implementation from mobile theme), the text shows as > having a highe

Re: StageText appears above popup (Flex)

2017-05-04 Thread Erik J. Thomas
Hey guys: Thanks for your suggestions. I tried a number of different things, including passing different IDisplayObjects as the popup "host", setting the childIndex and depth properties on both the popup and the TextInput control. I tried using the spark (not mobile) text input skin as someone