Re: Localization of AIR app

2018-12-04 Thread Erik J. Thomas
I knew there had to be another way to localize Info.plist entries in an AIR app than my workaround. I just didn't do enough digging in AIR docs and release notes because I didn't know to search for purposeStrings (AIR names things kind of oblique to what they actually do). Nevertheless, here

Re: Moonshine IDE vs FB 4.7

2018-12-04 Thread crikos
Hi Tom, time is fast and more than one year is over , but may I ask you where I can find that template for the generation of the VOs from Coldfusion Server ? Kind regards -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: How to cater for iPhoneX/XS/XR new status bar height?

2018-12-04 Thread leokan23
Use this in your css to fix it. @media (os-platform:"IOS") AND (application-dpi: 480) { s|Application { osStatusBarHeight: 65; } } Also add the same for dpi bigger than 480 to cover all new devices. This also can work for Android phones with notch. -- Sent