Thanks, Maarten. I'm happy that atleast there is away to do it as this was very critical requirement for a new project :) I'll give it a try. But can we also pass parameters to the flex app, while we invoke it? In my case, after validation, I have to pass username to my flex app.
On Tue, Mar 4, 2014 at 2:41 PM, Maarten Cammaert <[email protected]> wrote: > Hi, > > In your app description.xml file you should add this in the iPhone > > InfoAdditions node > > <key>CFBundleURLTypes</key> > <array> > <dict> > <key>CFBundleURLSchemes</key> > <array> > <string>URLSCHEME</string> > </array> > <key>CFBundleURLName</key> > <string>YOUR.APP.ID</string> > </dict> > </array> > > And replace URLSCHEME with the url scheme you want to use, like 'myapp' > Now when you click a link in a browser or email with the url > 'myapp://someurl' your app will open. > > > Best regards, > Maarten > > > On Tue, Mar 4, 2014 at 10:03 AM, Deepak MS <[email protected]> > wrote: > > > Hello, > > I have a requirement where is I need to open a link(a simple HTML page > with > > username and password fields) in safari browser on ipad, enter some login > > credentials and hit login button. A service will be called to validate > the > > login credentials and response would be passed back. > > > > Now, I want to pass this response(success\failure, with some additional > > parameters) to my flex app and open it directly. > > > > Is that possible? > > > > Cheers! > > >
