Re: Flex app with Angular2

2017-05-19 Thread olegkon
Honestly, I haven't made much progress - got stuck trying to revive that
Flex-Spring testdrive and migrate it first to latest Spring3
and then to Spring4 (as in the rest of my current Flex+Java app).

But I spoke to Dan Vega who teaches a lot of Spring Boot courses on Udemy.
He told me that Spring Boot does not add any extra when connecting to/from
Angular, it is done via standard RESTful web service.
Here is an interesting blog entry from him:
http://therealdanvega.com/blog/2017/05/03/spring-angular-applications

Keep me posted.

HTH,
Oleg.


On Fri, May 19, 2017 at 2:31 PM, sampath [via Apache Flex Users] <
ml+s246n15250...@n4.nabble.com> wrote:

> Hi, Did you get the solution. I am too having same problem. I have a flex
> application and migrating to angular2. As part of migration, I am writing
> restful spring web services and using them for angular2 application. Few of
> the components takes much time to convert in to angular2 so, I would like
> to use something to show the flex components into angular2. I am also
> having same requirement list as you have. Please tell me your progress.
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-users.246.n4.nabble.com/Flex-app-with-Angular2-
> tp14960p15250.html
> To unsubscribe from Flex app with Angular2, click here
> 
> .
> NAML
> 
>



-- 
Thank you,
Oleg.




--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-app-with-Angular2-tp14960p15251.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Flex app with Angular2

2017-05-19 Thread sampath
Hi, Did you get the solution. I am too having same problem. I have a flex
application and migrating to angular2. As part of migration, I am writing
restful spring web services and using them for angular2 application. Few of
the components takes much time to convert in to angular2 so, I would like to
use something to show the flex components into angular2. I am also having
same requirement list as you have. Please tell me your progress.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-app-with-Angular2-tp14960p15250.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


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://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 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:"+action.details)); break;
>>> case "sms": navigateToURL(new URLRequest("sms:"+action.details)); break;
>>> case "mailto": navigateToURL(new URLRequest("mailto:"+action.details));
>>> break;
>>> 
>>> On Mon, May 15, 2017 at 10:44 AM, Erik J. Thomas 
>> wrote:
>>> 
 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("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 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 phone (at least iOS), this will
>> launch the app. If the app is not available, it will open the browser
 and
>> nav to the profile. Very cool stuff. Works for google maps too, when
>> the
>> user taps an address.
>> 
>> But I need to do the following additional linking and don't know how
>> to
>> format the URLs to make it happen:
>> 
>> User taps a phone number, dials the phone if the device is a phone.
>> User taps an email address, and it launches their mail program to send
>> mail. Just need the syntax for subject, content, additional addresses,
 etc.
>> User taps a date/time field, and it launches their mobile calendar app
 and
>> offers to create a new item.
>> 
>> My guess is that this is all possible with Flex, but I'm not finding
 info
>> on syntax and usage through Google searches. I found this list of
>> device
>> specific deep linking, but expect Flex has a platform agnostic URL
 format
>> so we don't have to manage device/OS types in the flex app.
>> 
>> Just a link to the docs for this type of deep linking would be great.
 And
>> in the Mobile native world deep linking is usually about linking
>> mobile
>> apps. In the Flex world the term "deep linking" is most often
>> referring
 to
>> browser history management which is NOT what I need.
>> 
>> Thanks!
>> 
>> Erik
>> 
>> 
 
 
>> 
>>