Maarten, that's good to know.

Thanks for the information.

-----Message d'origine-----
De : Maarten Cammaert [mailto:[email protected]] 
Envoyé : mardi 4 mars 2014 10:11
À : [email protected]
Objet : Re: How to open a Flex App on iPad from a link in a browser

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!
>

Reply via email to