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: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Erik J. Thomas
Forgot to include the article on deep linking between native mobile apps: >> "I found this list of device specific deep linking" https://en.wikipedia.org/wiki/Mobile_deep_linking Seems that this must be possible from a Flex app without creati

Re: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Clint M
deep linking is the wrong term… I think you're looking for url schemes. phone is navigateToURL("tel:+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 a

Re: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread Erik J. Thomas
Ah, no wonder my searching didn't find what I was looking for. Thank you very much, Clint! Erik > On May 15, 2017, at 9:01 AM, Clint M wrote: > > deep linking is the wrong term… I think you're looking for url schemes. > > phone is navigateToURL("tel:+55"); > email is navigateToURL("ma

Re: Deep Linking with Flex to Mobile Apps

2017-05-15 Thread OmPrakash Muppirala
http://www.adobe.com/devnet/flex/articles/employee-directory-android-flex.html#articlecontentAdobe_numberedheader_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": na

Re: Deep Linking with Flex to Mobile Apps

2017-05-18 Thread Erik Thomas
Do you know the one for calendar events? > On May 15, 2017, at 11:10 AM, OmPrakash Muppirala > wrote: > > http://www.adobe.com/devnet/flex/articles/employee-directory-android-flex.html#articlecontentAdobe_numberedheader_5 > has a few examples > > case "tel": navigateToURL(new URLRequest("tel:"

Re: Deep Linking with Flex to Mobile Apps

2017-05-18 Thread Clint M
iOS: http://stackoverflow.com/a/22451681/3384609 Android: http://stackoverflow.com/a/35917525/3384609 You might want to take a look at a native extension such as: https://airnativeextensions.com/extension/com.distriqt.Calendar On Wed, May 17, 2017 at 8:04 PM, Erik Thomas wrote: > Do you know th

Re: Deep Linking with Flex to Mobile Apps

2017-05-19 Thread Erik J. Thomas
Thanks, Clint! Might be just the ticket. I want to be able to not just open the calendar to the intended date, but have it come up to the insert event dialog and prefill the title. This SDK/ANE may work well for that. Erik > On May 18, 2017, at 7:09 AM, Clint M wrote: > > iOS: http://stackove