Android Images Rotated

2017-06-12 Thread Erik J. Thomas
Hey all: I'm allowing a user to take a profile selfie or import a file from their camera roll, and on Android, the images are rotated inconsistently between front and rear cameras, as well as when importing from camera roll depending on how the user held the camera. The MediaEvent (upon sele

Re: Performance problem with RichText

2017-05-24 Thread Erik J. Thomas
06a5ea2-8000.html > > On Wed, May 24, 2017 at 3:52 PM, Erik J. Thomas wrote: > >> Hey all: >> >> We started noticing our mobile Flex app was unresponsive for like 5 or 6 >> seconds at launch where the UI was frozen. After profiling, we found the >> e

Performance problem with RichText

2017-05-24 Thread Erik J. Thomas
Hey all: We started noticing our mobile Flex app was unresponsive for like 5 or 6 seconds at launch where the UI was frozen. After profiling, we found the entire problem is with RichText and RichEditableText controls. We have social posts (like twitter) that consist of a post (one RichEditable

Re: microphone activity code / widget

2017-05-22 Thread Erik J. Thomas
Hey Scott: I had the same problem a few years ago and the activityLevel never shows anything no matter what event you listen for. I think it was marked a bug that was then resolved as not important enough to fix, so we ended up not implementing a feature that required (it wasn't high priority a

Re: Deep Linking with Flex to Mobile Apps

2017-05-19 Thread Erik J. Thomas
r_5 >>> has a few examples >>> >>> case "tel": navigateToURL(new URLRequest("tel:"+action.details)); break; >>> case "sms": navigateToURL(new URLRequest("sms:"+action.details)); break; >>> case "mailto"

Re: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Erik J. Thomas
55"); > email is navigateToURL("mailto:a...@asdf.com";); > > On Mon, May 15, 2017 at 8:51 AM, Erik J. Thomas wrote: > >> Hey all: >> >> I need to be able to do various deep linking between mobile apps and my >> Flex app. I've learned to do t

Re: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Erik J. Thomas
intended recipient. Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. > On May 15, 2017, at 8:51 AM, Erik J. Thomas wrote: > > Hey all: > > I need to be able to do various deep link

Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Erik J. Thomas
Hey all: I need to be able to do various deep linking between mobile apps and my Flex app. I've learned to do this for twitter and linked in profiles pretty simply: var u:URLRequest = new URLRequest(data.twitterProfileUrl); navigateToURL(u, "_blank"); If the twitter app is installed on the phon

Re: 2032 StreamError from URLRequest on older devices

2017-05-11 Thread Erik J. Thomas
> > > > On Thu, May 11, 2017 at 11:59 AM, Erik J. Thomas wrote: > >> Hey all: >> >> Tried testing my Flex app on iPhone 4S and iPad 2 and URLRequests are >> failing on both of them, though they work perfectly on iPhone 5, 6, and >> iPad AIR 2. >&

2032 StreamError from URLRequest on older devices

2017-05-11 Thread Erik J. Thomas
Hey all: Tried testing my Flex app on iPhone 4S and iPad 2 and URLRequests are failing on both of them, though they work perfectly on iPhone 5, 6, and iPad AIR 2. The error is a 2032 StreamError. App descriptor supports v9: MinimumOSVersion 9.0 Both the iPhone 4S and iPad 2 are running v

Re: How do you view all the available methods of a class?

2017-05-04 Thread Erik J. Thomas
If you are using FlashBuilder or IntelliJ with the Flex Plugin, you can simply hold down your Ctrl Key (Windows) or Command Key (Mac) while hovering your mouse over any class name in MXML or ActionScript. Just left click the class name and it will open the source code for that class in the edito

Re: StageText appears above popup (Flex)

2017-05-04 Thread Erik J. Thomas
Yes! Thank you Josh for that valuable suggestion. Awesome. Thanks again everyone. Erik > On May 4, 2017, at 7:00 AM, Josh Tynjala wrote: > > Try removing focus from the TextInput when you show the Alert. > > - Josh > > On May 3, 2017 3:11 PM, "Erik J. Thomas&quo

Re: StageText appears above popup (Flex)

2017-05-03 Thread Erik J. Thomas
using this skin actually solved the z-order problem, I could create a custom skin and fix the display problems I just mentioned, but it doesn't so I won't. Thanks for your ideas. Erik > On May 3, 2017, at 3:11 PM, Erik J. Thomas wrote: > > Hey all: > > When I popup an Aler

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: Slow Image Sizing

2017-04-24 Thread Erik J. Thomas
Apr 24, 2017 at 11:48 AM, Greg Dove wrote: > >> If JPEGEncoder is an actionscript encoder, you could switch to using the >> native encoding support. It is much faster. >> >> http://help.adobe.com/en_US/FlashPlatform/reference/ >> actionscript/3/flash/display/BitmapDat

Re: Slow Image Sizing

2017-04-24 Thread Erik J. Thomas
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/BitmapData.html#encode() > > > > On Tue, Apr 25, 2017 at 6:45 AM, Erik J. Thomas wrote: > >> Hey all: >> >> My flex mobile app posts social chat messages with an optional image. I

Slow Image Sizing

2017-04-24 Thread Erik J. Thomas
Hey all: My flex mobile app posts social chat messages with an optional image. It uses CameraRoll to allow the user to select any image on their phone. But modern phones take HUGE pics. We don't need full res photos for the chat and don't want to use up the bandwidth uploading full images and r

Re: How to display a unicode char (emoji) in TLF (RichEdit control)

2017-04-17 Thread Erik J. Thomas
://github.com/apache/flex-sdk/blob/8f3dd5bb05549b29f9d608e6abc914409a1a4ae2/frameworks/projects/flatspark/src/flatspark/utils/AwesomeUtils.as#L131 > > Of course, this is from a custom loaded font. > > Perhaps this could give you a hint on how you can achieve yours? > > Thanks, > Om > >

Re: How to display a unicode char (emoji) in TLF (RichEdit control)

2017-04-17 Thread Erik J. Thomas
17, 2017 at 3:28 PM, Clint M <mailto:cmod...@gmail.com>> wrote: > maybe this? > http://stackoverflow.com/questions/37192684/stagetext-and-emoji-on-android-air-mobile-as3 > > <http://stackoverflow.com/questions/37192684/stagetext-and-emoji-on-android-air-mobile-as3>

Re: How to display a unicode char (emoji) in TLF (RichEdit control)

2017-04-17 Thread Erik J. Thomas
e: > > maybe this? > http://stackoverflow.com/questions/37192684/stagetext-and-emoji-on-android-air-mobile-as3 > > <http://stackoverflow.com/questions/37192684/stagetext-and-emoji-on-android-air-mobile-as3> > txt2.text = decodeURI(txt1.text); > > On Mon, Ap

Re: How to display a unicode char (emoji) in TLF (RichEdit control)

2017-04-17 Thread Erik J. Thomas
Sorry, wherever I wrote "RichEdit" I meant to write "RichText". Thanks. Erik

How to display a unicode char (emoji) in TLF (RichEdit control)

2017-04-17 Thread Erik J. Thomas
Hey all: Do you have any idea how I can display this Unicode character U+1F601 or these UTF-8 Bytes \xF0\x9F\x98\x81 using TLF (in RichEdit control)? Thanks! Erik For additional background on my problem, read on... I'm implementing a

Twitter Flex Client?

2017-04-09 Thread Erik J. Thomas
Hey all: I'm developing a mobile app that has a view for following tweets based on an event hashtag. Anyone know of a 3rd party Twitter client that is built in Flex that I might leverage? Thanks! Erik

Anyone using IntelliJ for Flex Dev?

2017-04-06 Thread Erik J. Thomas
Hey all: Long time Flex developer (started with Flex Builder 2) currently working on a mobile app for iOS and Android. Finally took the plunge to switch from FlashBuilder 4.7 to IntelliJ with Flex plug in as my IDE. Was just wondering if anyone on this list is using IntelliJ for Flex mobile d

<    1   2